Victor Shelepen
Victor Shelepen

Reputation: 2256

How to build relationship map?

I like GraphQL and another libraries around GraphQL. I like GraphQL tools. But I found that I need a relation map. I thought that such tool had to exist. But I have not found. Does it exist?

Upvotes: 0

Views: 206

Answers (1)

Lars Emil Christensen
Lars Emil Christensen

Reputation: 544

If you are asking for a visual representation of relations, you could use GraphQL introspection to achieve this. Take a look on GraphQL Voyager:

Demo: https://apis.guru/graphql-voyager/

Copy the introspection query, paste and run it on your GraphQL API endpoint.Copy the results into GraphQL Voyager. You should get a nice visual representation of your data relations available through your GraphQL API.

Github: https://github.com/APIs-guru/graphql-voyager

Upvotes: 2

Related Questions