KNOT Metadata
Use this query to establish all the knots within the protocol, all the knots of a specific house or even index and find out all you need to know about a KNOT.
{
  knots(where: {
    stakeHouse: "0x20c35a0aefea0cfef534450346545e7ff51aa99d"
  }) {
    id
    isPartOfIndex
    savETHIndexId
    coordinates
  }
}
Here's the output of the above query:
{
  "data": {
    "knots": [
      {
        "id": "0x8153ee6dca6b794f9a9570d6cc88f93e4dae0c93340132eb1d2adbf59259569bcda71d13bafbb264d32d1249845f56c3",
        "isPartOfIndex": false,
        "savETHIndexId": "0",
        "coordinates": "(9,6)"
      },
      {
        "id": "0x85dc19b9d56ad0aa6437557e7c00629c4b3dc19802e36893f0f188c4e05ff013229bdc7fafebc772035c4ef32c622b2b",
        "isPartOfIndex": false,
        "savETHIndexId": "0",
        "coordinates": "(9,7)"
      },
    ]
  }
}