Repository URL to install this package:
|
Version:
2.0.12 ▾
|
import { gql } from 'apollo-server'
export default gql`
type Suggestion {
parent: String!
child: String!
}
type SuggestionResponse {
type: String
suggestions: [Suggestion]
}
`