You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may cover common (as I think) situation when you need to use generated types but slightly change them. As an example — add directives (e.g. add @auth to mutations).
type Mutation @auth {
#import Mutation.createArticle from "src/schema/generated/mysql.graphql"
}
or/and
type Mutation {
createArticle @auth {
#import Mutation.createArticle.* from "src/schema/generated/mysql.graphql"
}
}
The text was updated successfully, but these errors were encountered:
This may cover common (as I think) situation when you need to use generated types but slightly change them. As an example — add directives (e.g. add
@auth
to mutations).or/and
The text was updated successfully, but these errors were encountered: