GetGlossaryTerm

Get a web3 glossary term definition

Description

This query will return a glossary definition of a term that's held in the Glosseta web3 glossary

Arguments

Response Details

Sample Query

query {
  GetGlossaryTerm(term: "web3", locale: EN) {
    definition
    category
    term
    providerId
  }
}

Sample Response

{
  "data": {
    "GetGlossaryTerm": {
      "definition": "A term that defines the next generation of the web looking to make blockchains the backbone of the internet and introduce the concept of the token economy.  The token economy refers to the change of mindset with regards to how wealth, governance, community building and applications will be driven by a programmable means via blockchains.",
      "category": "general",
      "term": "web3"
      "providerId": "t2JjLSaMEAkp9s0Bk8g_9kpwwWVNhiSaEs8ERJHJ-kc"
    }
  }
}

Last updated