endless-jadeE
Refine3y ago
11 replies
endless-jade

GraphQL support for nodes and edges

Hi @Omer I am trying to use Elide's GraphQL API and trying to use refine-graphql. Elide returns data inside edges and node format.

{
      "data": {
          "group": {
              "edges": [
              {
                  "node": {
                  "commonName": "Example Repository",
                  "description": "The code for this project",
                  "name": "com.example.repository"
                  }
              }
              ]
          }
      }
  }


How can I achieve this with Refine?
Was this page helpful?