Hi, how does `graphql-import` work? This is my sit...
# orm-help
m
Hi, how does
graphql-import
work? This is my situation:
Copy code
type Query {
  object(where: ObjectWhereUniqueInput!): Object
}
FAILS, unknown type
ObjectWhereUniqueInput
. Adding
Copy code
# import ObjectWhereUniqueInput from "./schemas/object-service.graphql"
solves the issue. However, adding
Copy code
# import huhu from "./schemas/object-service.graphql"
Also solves the issue. Is this a bug or am I overlooking something? Should I open an issue?