shootismoke/backend

View on GitHub
src/schema/link.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import gql from 'graphql-tag';

export const linkSchema = gql`
    scalar Date

    type Query {
        _: Boolean
    }
    type Mutation {
        _: Boolean
    }
`;