Modify an existing custom resolver configuration.
The name of the resolver's parent type. This can be "Query", "Mutation", or the name of a generated type if this is a computed property.
The name of the custom resolver field that appears in the GraphQL schema.
The type of the custom resolver's input parameter. This can be a scalar, the name of an existing generated type, or a custom JSON schema object. If undefined, the resolver does not accept an input.
The kind of input type the custom resolver uses. This value must agree with the value of input_type:
If undefined, the resolver does not accept an input.
The type of the value returned by the custom resolver. This can be a scalar, the name of an existing generated type, or a custom JSON schema object.
If undefined, the resolver returns a DefaultPayload object:
type DefaultPayload { status: String! }
The kind of payload type the custom resolver uses. This value must agree with the value of payload_type:
If undefined, the resolver returns a DefaultPayload object.
The custom resolver's unique ID.
The resolver function's unique ID.
Updated