graphbrainz/src/types/entity.js

10 lines
225 B
JavaScript
Raw Normal View History

2016-08-08 07:54:06 +00:00
import { GraphQLInterfaceType, GraphQLNonNull } from 'graphql/type'
import MBID from './mbid'
export default new GraphQLInterfaceType({
name: 'Entity',
fields: () => ({
id: { type: new GraphQLNonNull(MBID) }
})
})