All Projects → sibelius → graphql-mock-api

sibelius / graphql-mock-api

Licence: other
A GraphQL mock to any GraphQL schema

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to graphql-mock-api

Mockito Scala
Mockito for Scala language
Stars: ✭ 231 (+725%)
Mutual labels:  mock
Mujina
A mock IDP and SP using the OpenSAML library
Stars: ✭ 250 (+792.86%)
Mutual labels:  mock
xrm-mock-generator
📖  Generates a mock Xrm.Page object. Commonly used by xrm-mock to test Dynamics 365 client-side customisations.
Stars: ✭ 15 (-46.43%)
Mutual labels:  mock
Faker
Provides fake data to your Android apps :)
Stars: ✭ 234 (+735.71%)
Mutual labels:  mock
Jest Localstorage Mock
A module to mock window.localStorage and window.sessionStorage in Jest
Stars: ✭ 247 (+782.14%)
Mutual labels:  mock
Vue Element Admin
🎉 A magical vue admin https://panjiachen.github.io/vue-element-admin
Stars: ✭ 73,044 (+260771.43%)
Mutual labels:  mock
Mockiato
A strict, yet friendly mocking library for Rust 2018
Stars: ✭ 229 (+717.86%)
Mutual labels:  mock
aem-stubs
Tool for providing sample data for AEM applications in a simple and flexible way. Stubbing server on AEM, no separate needed.
Stars: ✭ 40 (+42.86%)
Mutual labels:  mock
Gripmock
gRPC Mock Server
Stars: ✭ 248 (+785.71%)
Mutual labels:  mock
DataAbstractions.Dapper
A light abstraction around Dapper and Dapper.Contrib that also maintains the behavior IDbConnection.
Stars: ✭ 37 (+32.14%)
Mutual labels:  mock
Mockoon
Mockoon is the easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source.
Stars: ✭ 3,448 (+12214.29%)
Mutual labels:  mock
Vuex Mock Store
✅Simple and straightforward Vuex Store mock for vue-test-utils
Stars: ✭ 246 (+778.57%)
Mutual labels:  mock
go-github-mock
A library to aid unittesting code that uses Golang's Github SDK
Stars: ✭ 63 (+125%)
Mutual labels:  mock
Okhttp Json Mock
Mock your datas for Okhttp and Retrofit in json format in just a few moves
Stars: ✭ 231 (+725%)
Mutual labels:  mock
HttpClientMock
Library for mocking Apache HttpClient.
Stars: ✭ 41 (+46.43%)
Mutual labels:  mock
Axios Mock Adapter
Axios adapter that allows to easily mock requests
Stars: ✭ 2,832 (+10014.29%)
Mutual labels:  mock
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+803.57%)
Mutual labels:  mock
walletconnect-test-wallet
Test Wallet (Web)
Stars: ✭ 163 (+482.14%)
Mutual labels:  mock
mocka
Mocka - The complete testing framework for LUA and Nginx
Stars: ✭ 26 (-7.14%)
Mutual labels:  mock
openman
Postman to OpenAPI Spec converter with mocking and documentation
Stars: ✭ 17 (-39.29%)
Mutual labels:  mock

GraphQL Mock API

Send schema and mocks inside POST body to mock any GraphQL schema

const schema = `
type Query {
  user: User
}

type User {
  name: String
}
`
const mocks = {
  User: {
    name: 'awesome'
  },
}

How to run

yarn start
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].