Skip to content
This repository was archived by the owner on Dec 25, 2022. It is now read-only.
This repository was archived by the owner on Dec 25, 2022. It is now read-only.

Missing fields in result #34

Open
Open
@chrneumann

Description

@chrneumann

Hey,

for a Schema like this:

        rootKey: 'stations',
        schemas: {
          stations: `
            features: [features]
          `,
          features: `
            properties: properties
            geometry: geometry
          `,
          properties: `
            name: String
          `,
          geometry: `
            coordinates: [Float]
          `,

And a query like this:

query MyQuery {
  allFeatures {
    totalCount
    edges {
      node {
        id
        properties {
          name
        }
      }
    }
  }
}

I get incomplete results (properties is null):

{
  "data": {
    "allFeatures": {
      "totalCount": 5556,
      "edges": [
        {
          "node": {
            "id": "d92c142e-fd57-56e7-8c7e-d5401d119dd2",
            "properties": null
          }
        },
[...]

Querying for allProperties or allGeometry works as expected. Is this a Bug (sounds like #8)?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions