mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
9 lines
225 B
JavaScript
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) }
|
|
})
|
|
})
|