Skip to content

Fix: Aggregate inversion solution returned by incorrect ID #194

@benjamineac

Description

@benjamineac

Following query returns and AggregateInversionSolution (QWdncmVnYXRlSW52ZXJzaW9uU29sdXRpb246MTEzNTE4) from the ID for an InversionSolution (SW52ZXJzaW9uU29sdXRpb246MTEzNTE4);

query: `query AggregateInversionSolutionDetailTabQuery($id: ID!) {
        node(id: $id) {
          id
          __typename
          ... on AggregateInversionSolution {
            file_name
            file_size
            md5_digest
            created
            meta {
              k
              v
          }
          aggregation_fn
          common_rupture_set {
              ... on Node {
                __isNode: __typename
                id
            }
            id
        }
          produced_by {
              __typename
              ... on Node {
                __isNode: __typename
                id
                __typename
            }
        }
      }
    }
  }
    `,
  variables: {
    id: 'SW52ZXJzaW9uU29sdXRpb246MTEzNTE4',
  },

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions