All GraphQL SDL schema fields shown as depreciated in GraphQL-Voyager regardless if they actually are

All GraphQL SDL schema fields shown as depreciated in GraphQL-Voyager regardless if they actually are


0

I’m trying to check my GraphQL Schema created in SDL using "GraphQL-Voyager", but it always shows all fields are "DEPRECATED" even when none of them are declared as deprecated. For an example, the following simple schema would encounter the issue:

schema {
  query: Query
}

type Query {
  get_CONTACTS( id: ID! ): CONTACTS
}

type CONTACTS {
  CONTACT_ID: ID!
  FIRST_NAME: String
  LAST_NAME: String
}

Screen shots showing the issue

I’m new to GraphQL and currently just following what I’ve learned from an online course I purchased earlier, not sure what else I can try.

Any information will be greatly appreciated!

Thanks!

New contributor

Bach-Mania is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


Load 7 more related questions


Show fewer related questions

0



Leave a Reply

Your email address will not be published. Required fields are marked *