From 7e8a7c8aee46c04c71f7201b9abeb5ad635ebc47 Mon Sep 17 00:00:00 2001 From: Alper Altay Date: Fri, 22 Mar 2024 11:13:48 +0100 Subject: [PATCH] chore: added missing commas to queryEntities Signed-off-by: Alper Altay --- .changeset/mighty-cooks-lie.md | 5 +++++ packages/catalog-client/src/types/api.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/mighty-cooks-lie.md 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' }, * }); * ``` *