/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/api-functional/_files/Magento/TestModuleGraphQlQuery/etc/schema.graphqls
44 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
11 ноя 2025, 17:53
11 ноя 2025, 17:53
f22b64f
Код
Авторство
О чём код?
# Copyright 2018 Adobe # All Rights Reserved. type Query { testItem(id: Int!) : TestItemOutput @resolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\Item") testUnion: TestUnion @resolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\TestUnion") testQueryWithNestedMandatoryInputArguments(input: TestInputQueryWithMandatoryArgumentsInput): TestItemOutput testQueryWithTopLevelMandatoryInputArguments(topLevelArgument: String!): TestItemOutput } type Mutation { testItem(id: Int!) : MutationItemOutput @resolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\Item") } type TestItemOutput { item_id: Int name: String } type MutationItemOutput { item_id: Int name: String } union TestUnion @doc(description: "some kind of union") @typeResolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\UnionTypeResolver") = TypeCustom1 | TypeCustom2 type TypeCustom1 { custom_name1: String } type TypeCustom2 { custom_name2: String } input TestInputQueryWithMandatoryArgumentsInput { query_id: String! query_items: [QueryWithMandatoryArgumentsInput!]! } input QueryWithMandatoryArgumentsInput { query_item_id: Int! quantity: Float }