Can you make a graphql type both an input and output type?
In the GraphQL spec, objects and input objects are distinct things. Quoting the spec for input objects: Fields can define arguments that the client passes up with the query, to configure their behavior. These inputs can be Strings or Enums, but they sometimes need to be more complex than this. The Object type… is inappropriate … Read more