diff --git a/.changeset/mighty-cooks-lie.md b/.changeset/mighty-cooks-lie.md new file mode 100644 index 0000000000..2e1388caf5 --- /dev/null +++ b/.changeset/mighty-cooks-lie.md @@ -0,0 +1,5 @@ +--- +'@backstage/catalog-client': patch +--- + +Added missing commas to the example of queryEntities diff --git a/packages/catalog-client/src/types/api.ts b/packages/catalog-client/src/types/api.ts index 91ae64fff3..7eded50776 100644 --- a/packages/catalog-client/src/types/api.ts +++ b/packages/catalog-client/src/types/api.ts @@ -498,8 +498,8 @@ export interface CatalogApi { * limit: 20, * fullTextFilter: { * term: 'A', - * } - * orderFields: { field: 'metadata.name' order: 'asc' }, + * }, + * orderFields: { field: 'metadata.name', order: 'asc' }, * }); * ``` *