Code Monkey home page Code Monkey logo

Comments (1)

nikcio avatar nikcio commented on July 28, 2024 1

Hi @markadrake

Unfortunately to my understanding the GraphQL spec doesn't allow for infinite recursion you can read more here: graphql/graphql-spec#91 (comment)

But there's atleast two ways to workaround this issue:

  1. If you like the old way of requesting data better you can overrride it. See an example of how to do it here: d5d2610

image

  1. If you'd like to preserve the current way of querying you will have to manually nest the amount of levels deep you want to go into a block list. Let's say you for example don't use more than 3 levels deep nested block lists then you could do something like this:
{
  contentAtRoot {
    nodes {
      properties {
        value {
          ...propertyValues
        }
      }
    }
  }
}

fragment propertyValues on PropertyValue {
  ...allValues
  ... on BasicBlockListModel {
    blocks {
      contentProperties {
        value {
          ...allValues
          ... on BasicBlockListModel {
            blocks {
              contentProperties {
                value {
                  ...allValues
                  ... on BasicBlockListModel {
                    blocks {
                      contentProperties {
                        value {
                          ...allValues
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

fragment allValues on PropertyValue {
  ...basicValue
  ...contentPicker
  ...label
}

fragment contentPicker on PropertyValue {
  ... on BasicContentPicker {
    contentList {
      id
    }
  }
}

fragment basicValue on PropertyValue {
  ... on BasicPropertyValue {
    value
  }
}

fragment label on PropertyValue {
  ... on BasicLabel {
    label: value
  }
}

By keeping within the GraphQL spec you still have all the features that GraphQL brings. For example here I've set a label value to be aliased as label.

I hope this answers your question.

from nikcio.uheadless.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.