UNPKG

@rxdi/ui-components

Version:

UI Components for building graphql-server website

11 lines (9 loc) 227 B
import { GraphQLObjectType, GraphQLInt } from 'graphql'; export const HamburgerStatisticsType = new GraphQLObjectType({ name: 'HamburgerStatisticsType', fields: () => ({ clicks: { type: GraphQLInt } }) });