gqlify
gqlify copied to clipboard
An API integration framework using GraphQL
**Is your feature request related to a problem? Please describe.** Add document about relay style API and `RelayPlugin`.
**Is your feature request related to a problem? Please describe.** Delete mutation should have cascade feature. **Describe the solution you'd like** When deleting a record, the relationship data at other...
Just wondering how this lib would work with graphql subscriptions? I haven't tried it myself yet, but it seems from https://github.com/Canner/gqlify/issues/13 that it may not given that issue seems to...
## Goal * Support different kind of authentication flow * graphql-rbac * openid-connect ## Resources * graphql-rbac: https://github.com/Canner/graphql-rbac * openid-connect: https://openid.net/connect/
**Describe the solution you'd like** How should GQLify deal with filtering with custom scalar? like `DateTime`. **Describe alternatives you've considered** Maybe data-source should provide some ways to serialize the value...
**Describe the bug** When a model has several relation fields, there might be chances that foreign key field name duplicated. **To Reproduce** Construct a model with same to-many relation fields...
## Goal * Improve graphql performance by adding a memoize function to data-source query methods ## Why There will be lots of duplicated requests sent to data-source in one graphql...
## Goal * developers should be able to customize the foreign key name * developers should be able to decide how to save the relationship in data-source * developers should...
## Goal * `DataSource` instance can understand directives in datamodel ## Use case ### `@firebase_map` ```graphql type user @GQLifyModel { tags: [String!]! @firebase_map(value: true) } ``` It will save `tags`...