goldenbearkin
goldenbearkin

Reputation: 546

aws cloudformation appsync extend query?

Am I able to extend the query by using AWS cloudformation to provision Appysnc like below so that the schema can be modularized and distributed in different yml files?

Schema:
      Type: AWS::AppSync::GraphQLSchema
      Properties:
        ApiId: xxxxxxxxxxxxxxxxx
        Definition: |
          extend type Query {
            you: You!
          }
          type You {
            name: String!
          }

Upvotes: 3

Views: 304

Answers (1)

mparis
mparis

Reputation: 3683

Type extensions aren't currently supported but the team is aware of the issue. There is currently no ETA on when this will be supported but thanks for suggesting this as it helps prioritize work!

Upvotes: 2

Related Questions