graphbrainz/src/types/entity.js
2016-08-08 21:59:08 -07:00

9 lines
225 B
JavaScript

import { GraphQLInterfaceType, GraphQLNonNull } from 'graphql/type'
import MBID from './mbid'
export default new GraphQLInterfaceType({
name: 'Entity',
fields: () => ({
id: { type: new GraphQLNonNull(MBID) }
})
})