OBJECT

AttributeType

link GraphQL Schema definition

1type AttributeType {
2name: String!
3
4description: String!
5
6isMapped: Boolean!
7
8isMulti: Boolean!
9
10objectType: AttributeObjectType!
11
12# Required permission: Attribute:read
13#
14# All elements are always returned
15elements: [AttributeTypeElement!]!
16
17}