INTERFACE

Attribute

link GraphQL Schema definition

1interface Attribute {
2description: String!
3
4objectType: AttributeObjectType!
5
6# Required permission: Attribute:read
7#
8# All elements are always returned
9#
10# Arguments
11# where: (self-explanatory)
12elements(where: AssignedAttributeElementFilter): [AttributeElement!]!
13
14# Required permission: Attribute:read
15type: AttributeType!
16
17}