Skip to content

InterfaceSpecificationInput

Input to create an InterfaceSpecification

graphql
input InterfaceSpecificationInput {
  description: String!
  name: String!
  template: ID!
  templatedFields: [JSONFieldInput!]!
  versions: [InterfaceSpecificationVersionInput!]
}

Fields

InterfaceSpecificationInput.description ● String! non-null scalar

The description of the NamedNode

InterfaceSpecificationInput.name ● String! non-null scalar

The name of the NamedNode, must not be blank

InterfaceSpecificationInput.template ● ID! non-null scalar

The template of the created InterfaceSpecification

InterfaceSpecificationInput.templatedFields ● [JSONFieldInput!]! non-null input

Initial values for all templatedFields

InterfaceSpecificationInput.versions ● [InterfaceSpecificationVersionInput!] list input

Initial versions of the InterfaceSpecification

Member Of

CreateComponentInput input

Released under the MIT License.