input StepZen_GraphQLPrefix
Defines a prefix for root operations and types used in @graphql
.
Fields
includeRootOperations: Boolean = false
Indicates that root operation fields in Query
and Mutation
are
prefixed with the value.
If false
then only types are assumed to be prefixed.
value: String!
Prefix that renames root operation fields and types
for the backend @graphql
endpoint in this schema.
The value of the prefix is expected to be a short lowercased string
such as abc_
or abc
.
When applied to a root operation field then it must be used as-is.
When applied to a type is must be used with the first letter upper-cased,
for example Abc_
.