We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e46397 commit ec16e98Copy full SHA for ec16e98
graphql_api.graphql.inc
@@ -139,6 +139,24 @@ function graphql_api_graphql_api_info() {
139
'description' => t('The credentials of the name.')
140
]
141
142
+ ]),
143
+ 'field_item_link' => new ObjectType([
144
+ 'name' => 'field_item_link',
145
+ 'fields' => [
146
+ 'title' => [
147
+ 'type' => Type::string(),
148
+ 'description' => t('The title of the link.')
149
+ ],
150
+ 'url' => [
151
152
+ 'description' => t('The URL of the link.')
153
154
+ // @todo convert attributes to JSON?
155
+// 'attributes' => [
156
+// 'type' => Type::string(),
157
+// 'description' => t('The attributes of the link.')
158
+// ],
159
+ ]
160
])
161
162
];
0 commit comments