Hi,
I’m trying to use the ref as an arg, is it possible?
Here’s the schema
type Project {
user: String
name: String!
}
type Query {
projectsByUser(user: String!): [Project!]!
projectsByUserAndRef(ref: String!, user: String!): Project
}
When I import it, I get this error
I am able to create it manually though
How to use the ref in schema.gql, is it possible?
Thank you