NamespaceCreationInput
Input to create a new namespace
input NamespaceCreationInput {
id: ID
name: String!
description: String
}
Fields
NamespaceCreationInput.id
● ID
scalar
The ID of the namespace (an UUID). If not present, one will be created.
NamespaceCreationInput.name
● String!
non-null scalar
A human-readable name to help identify the namespace.
NamespaceCreationInput.description
● String
scalar
A description of the namespace.
Member of
createNamespace
mutation