Merge pull request #23788 from alper98/chore/missing-commas-queryEntities

chore: added missing commas to queryEntities
This commit is contained in:
Fredrik Adelöw
2024-03-22 12:07:43 +01:00
committed by GitHub
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/catalog-client': patch
---
Added missing commas to the example of `queryEntities`
+2 -2
View File
@@ -498,8 +498,8 @@ export interface CatalogApi {
* limit: 20,
* fullTextFilter: {
* term: 'A',
* }
* orderFields: { field: 'metadata.name' order: 'asc' },
* },
* orderFields: { field: 'metadata.name', order: 'asc' },
* });
* ```
*