Skip to content

fix graphql extensions query

Warren Gifford requested to merge fix-graphql-extensions-query into master

Created by: sqs

The extension manifest used to contain a "title" field, but that was phased out a while ago in favor of just having a name. The src extensions list command and other subcommands still tried to fetch the manifest title, which resulted in the following error:

GraphQL errors:
[
  {
    "locations": [
      {
        "column": 9,
        "line": 29
      }
    ],
    "message": "Cannot query field \"title\" on type \"ExtensionManifest\"."
  }
]

This fixes the GraphQL query to not use the (nonexistent) title field anymore.

Merge request reports

Loading