OBJECT

Query

Language api for Dutch - Frisian - English, authoritative for Frisian hence Frisian may show more details. You can use english when searching in lemmas or texts (examples etc.), you can directly query the frisian-english source, you can request details from the english source (i.e. using the links in results) and you can request english translations for frisian lemmas in results.

link GraphQL Schema definition

  • type Query {
  • # search for lemmas (lucene syntax), return a paginated graph with lemmas
  • #
  • # Arguments
  • # offset: [Not documented]
  • # max: [Not documented]
  • # searchterm: [Not documented]
  • # lang: [Not documented]
  • # pos: [Not documented]
  • # source: search in specific source, see sources query
  • # sensitive: search case and diacrit sensitive
  • # lexiconFallback: when true and language is frisian use lexicon
  • # results when dictionaries don't return any
  • # englishTranslations: when true english translations for frisian
  • # results are shown together with dutch translations
  • lemmasearch(
  • offset: Int!,
  • max: Int!,
  • searchterm: String!,
  • lang: LangType!,
  • pos: GramType,
  • source: String,
  • sensitive: Boolean!,
  • lexiconFallback: Boolean!,
  • englishTranslations: Boolean!
  • ): Lemmas
  • # search in text (lucene syntax), return a paginated graph with texts
  • #
  • # Arguments
  • # offset: [Not documented]
  • # max: [Not documented]
  • # searchterm: [Not documented]
  • # lang: [Not documented]
  • # source: search in specific source, see sources query
  • # sensitive: search case and diacrit sensitive
  • textsearch(
  • offset: Int!,
  • max: Int!,
  • searchterm: String!,
  • lang: LangType!,
  • source: String,
  • sensitive: Boolean!
  • ): Texts
  • # show detailed information of a lemma
  • #
  • # Arguments
  • # lemma: case and diacrit sensitive lemma (article) to find
  • # pos: part of speech for the lemma, see enums GramType starting
  • # with pos_
  • # source: details in specific source, see LemmaLink and sources
  • # query
  • # englishTranslations: when true english translations for frisian
  • # results are shown together with dutch translations
  • details(
  • lemma: String!,
  • pos: GramType,
  • source: String!,
  • englishTranslations: Boolean!
  • ): [Details]
  • # show categorized lists of rhyming words, best rhyming on top.
  • #
  • # Arguments
  • # offset: [Not documented]
  • # max: [Not documented]
  • # word: [Not documented]
  • # pos: provide pos (see GramType) for better determination of ipa
  • # for input
  • # posFilter: filter results on pos (see GramType)
  • # showLessRelevant: show less relevant results
  • # searchIpa: When searchIpa is true the input is assumed to be
  • # ipa
  • # showIpa: should ipa be shown in the results
  • # numSyllables: how many syllables at most should be considered
  • # when looking for rhyming words
  • # showLessCommon: should less common words be included
  • # showHalfRhyme: include half rhyme
  • # showVariants: should variants words be included
  • rhyme(
  • offset: Int!,
  • max: Int!,
  • word: String!,
  • pos: GramType,
  • posFilter: GramType,
  • showLessRelevant: Boolean!,
  • searchIpa: Boolean!,
  • showIpa: Boolean!,
  • numSyllables: Int,
  • showLessCommon: Boolean!,
  • showHalfRhyme: Boolean!,
  • showVariants: Boolean!
  • ): RhymeResults!
  • # translate text
  • #
  • # Arguments
  • # text: [Not documented]
  • # lang: [Not documented]
  • translatetext(text: String!, lang: LangType!): TextTranslation
  • # request information of sources that can be searched
  • sources: [Source!]!
  • }

link Require by

This element is not required by anyone