mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
|
|
import { gql } from 'graphql-modules';
|
||
|
|
|
||
|
|
export default gql`
|
||
|
|
extend type Query {
|
||
|
|
lab(selector: TargetSelectorInput!): Lab
|
||
|
|
}
|
||
|
|
type Lab {
|
||
|
|
schema: String!
|
||
|
|
mocks: JSON
|
||
|
|
}
|
||
|
|
`;
|