A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/driescroons/graphql-fields-to-relations below:

driescroons/graphql-fields-to-relations: Resolve your graphql fields to (MikroOrm) relations

graphql-fields-to-relations

FieldsToRelations is a graphql helper that gets your relation string from graphql's input fields. This package was created for the MikroOrm Graphql Example.

Install the package with yarn:

yarn add graphql-fields-to-relations

or with npm:

npm install graphql-fields-to-relations

And use it like so:

const fieldsToRelations = require('fieldsToRelations');

// in your resolver
const relations = fieldsToRelations(info);

As an example, take following query:

query {
  getBoards {
    id name memberships {
      id user {
        email
      }
    }
    lists {
      items {
        id name list {
          id name
          board {
            id name
            memberships {
              id user {
                id email
              }
            }
          }
        }
      }
    }
  }
}

The helper will return the following relation string:

[
  "memberships",
  "memberships.user",
  "lists",
  "lists.items",
  "lists.items.list",
  "lists.items.list.board",
  "lists.items.list.board.memberships",
  "lists.items.list.board.memberships.user"
]

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4