cncf / landscape-graph

CNCF Landscape Graph, data model, and applications.
https://github.com/orgs/cncf/projects/7/views/6
Other
39 stars 11 forks source link

Implement autogenerated mocks for GraphQL API from schema #103

Open halcyondude opened 2 years ago

halcyondude commented 2 years ago

https://www.graphql-tools.com/docs/mocking#addmockstoschema

Mocking

The strongly-typed nature of a GraphQL API lends itself extremely well to mocking. This is an important part of a GraphQL-First development process, because it enables frontend developers to build out UI components and features without having to wait for a backend implementation.

Even with a backend that is already built, mocking allows you to test your UI without waiting on slow database requests or building out a component harness with a tool like React Storybook. Default mock example

Let's take a look at how we can mock a GraphQL schema with just one line of code, using the default mocking logic you get out of the box with graphql-tools.

To start, let's grab the schema definition string from the makeExecutableSchema example in the "Generating a schema" article.

solo-daemon commented 1 year ago

i am starting on it .

firedragonironfist commented 1 year ago

Hello there! I'm interested in contributing to this project and would like to work on this particular issue. Could you please assign me this issue so I can get started? Thank you!

isinghabhishek commented 1 year ago

Hi, @halcyondude I would like to work on these. Here is code autogenerated mocks for GraphQL API from schema: GraphQL API

Please do suggest.