william chang(張仲威)
william chang(張仲威)
This feature request serves as a central place to discuss development and progress for the support for AWS AppSync. Please contribute in the comments below. I will update the top...
## Goal * to support union and interface ## Resources * https://medium.com/the-graphqlhub/graphql-tour-interfaces-and-unions-7dd5be35de0d
**Describe the solution you'd like** Remove some mutations or queries for a specific model **Describe alternatives you've considered** Maybe add directives to model like ```graphql type User @queryOnly { name:...
**Describe the solution you'd like** For example: ```graphql type User @GQLifyModel(dataSource: "firestore", key: "employees") { email: String! @unique name: String! } ``` `email` field as primary key instead of firestore...
**Is your feature request related to a problem? Please describe.** We should support more operator like `comparator` for `Int`, `contains` for `string`. Ref: https://www.opencrud.org/#sec-Data-types **Describe the solution you'd like** Based...
## Goal * developers can implement business logic before/after data creation, or update the payload. ## Use case ### Send email after creation ```graphql type User @afterCreate(name: "mailgunSend") { #...
**Is your feature request related to a problem? Please describe.** For issues below: * #34: Atomic operation on nested array in GraphQL API * #35: Support `firestore.FieldValue.serverTimestamp()` Also for future...
**Is your feature request related to a problem? Please describe.** We should provide a way to let developers annotate a field that tells GQLify to put `firestore.FieldValue.serverTimestamp()` in it when...
**Is your feature request related to a problem? Please describe.** We should provide atomic operation like `add`, `remove`, `set` operation for nested array type. **Describe the solution you'd like** ```graphql...
**Is your feature request related to a problem? Please describe.** Add document about relay style API and `RelayPlugin`.