OBJECT

RhymeResults

link GraphQL Schema definition

  • type RhymeResults implements PagingInterface, MessageHolder {
  • offset: Int!
  • total: Int!
  • max: Int!
  • # total after filtering, for use in gui's
  • filteredTotal: Int!
  • # number of syllable of the input word
  • syllableCount: Int!
  • searchTerm: String!
  • # the (calculated) phonetics for the input word, including similar sounds
  • ipa: [String!]!
  • # the phonetics of the input word
  • totalIpa: String!
  • rhymeGroups: [RhymeGroup]!
  • message: [Message]
  • }