william chang(張仲威)

Results 32 issues of 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...

enhancement
data-source

## Goal * to support union and interface ## Resources * https://medium.com/the-graphqlhub/graphql-tour-interfaces-and-unions-7dd5be35de0d

graphql

**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:...

enhancement
datamodel

**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...

graphql
datamodel

**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...

enhancement
graphql

## 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") { #...

graphql
datamodel

**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...

enhancement
data-source
graphql

**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...

enhancement
datamodel

**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...

enhancement
graphql

**Is your feature request related to a problem? Please describe.** Add document about relay style API and `RelayPlugin`.