String
UTF-8 character sequence scalar type
Format
Usage
type Customer {
id: ID!
name: String!
description: String # Nullable
code: String!
}
mutation {
createCustomer(input: {
name: "Acme Corporation"
code: "ACME-001"
description: "Primary supplier for widgets"
}) {
customer {
id
}
}
}Common String Fields
Filtering
See Also
Last updated
Was this helpful?
