Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!
          }
like image 568
goldenbearkin Avatar asked Mar 20 '26 22:03

goldenbearkin


1 Answers

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!

like image 68
mparis Avatar answered Mar 23 '26 22:03

mparis