Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / src / models / SearchSuggestion.graphql.ts
Size: Mime:
import { gql } from 'apollo-server'

export default gql`
  type Suggestion {
    parent: String!
    child: String!
  }
  type SuggestionResponse {
    type: String
    suggestions: [Suggestion]
  }
`