-
Using the movie example I have the following schema:
```
type Movie {
title: String!
released: Int
actors: [Person] @relation(name:"ACTED_IN",direction:IN)
directors: [Person] @cypher(s…
-
**Describe the issue**
Hi, I can't craft a uniform mutation using generated CRUD resolvers that can process optional properties.
Example that does work:
variables (phoneNumber is optional but…
-
Might be a lot of work, but let's consider support for federation
https://www.apollographql.com/docs/federation/managed-federation/overview/
-
### Before opening, please confirm:
- [X] I have installed the latest version of the Amplify CLI (see above), and confirmed that the issue still persists.
- [X] I have [searched for duplicate or clo…
-
It appears that there's no support for union types, intentional, or something that can be added?
https://graphql.org/learn/schema/#union-types
**Schema that failed:**
```
union Credentials = …
-
I have the following struct in which the `Topics` in the field tag can be optional so I made it as a pointer. Now while try calling the graphql it is resulting in error
```
type Topic struct {
…
-
**Is your feature request related to a problem? Please describe.**
Hello! We spoke on the Apollo GraphQL mobile stream about this issue. It was a pleasure getting to talk with the squad:)
One of t…
-
**Describe the solution you'd like**
Currently I can't modify the Enum generated from codegen, because when models are built again, it overrides my files. I feel like I should be able to lock down a …
-
I've found no documentation about how to do caching in express-graphql, and I really would like to not have to switch to apollo-server, to be able to set a simple TTL per resolver. Is caching really n…
-
Parallel visitor takes a list of visitors and visit each node in AST with each visitor individually.
See https://github.com/graphql/graphql-js/blob/64ff409/src/language/visitor.js#L365.
It is us…