OBJECT

MappedAttribute

link GraphQL Schema definition

1type MappedAttribute implements Attribute, ObjectWithTranslations, Localizable {
2id: Int!
3
4name: String!
5
6description: String!
7
8objectType: AttributeObjectType!
9
10# Required permission: Attribute:read
11#
12# All elements are always returned
13#
14# Arguments
15# where: (self-explanatory)
16elements(where: AssignedAttributeElementFilter): [AttributeElement!]!
17
18# Required permission: Translation:read
19#
20# All elements are always returned
21#
22# Arguments
23# where: (self-explanatory)
24translations(where: TranslationFilter): [LanguageTranslation!]!
25
26# Required permission: Attribute:read
27type: AttributeType!
28
29}