From 33d4f8990f54dcfa89ea40a664ba0576e843d5b1 Mon Sep 17 00:00:00 2001 From: Kriti Jain Date: Wed, 22 Jan 2025 15:58:55 -0600 Subject: [PATCH] MODFQMMGR-635:Add Query Parameter to /entity-types Endpoint to Retrieve All Entity Types (Simple and Composite) --- src/main/resources/swagger.api/queryTool.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/resources/swagger.api/queryTool.yaml b/src/main/resources/swagger.api/queryTool.yaml index f93fe4a..fbfec93 100644 --- a/src/main/resources/swagger.api/queryTool.yaml +++ b/src/main/resources/swagger.api/queryTool.yaml @@ -14,6 +14,7 @@ paths: parameters: - $ref: '#/components/parameters/entityTypeId' - $ref: '#/components/parameters/include-hidden' + - $ref: '#/components/parameters/include-all' responses: '200': description: 'Definition of the requested entity type' @@ -269,6 +270,13 @@ components: description: Indicates if query results should be included in the query details response schema: type: boolean + include-all: + name: includeAll + in: query + required: false + description: Indicates if all entity types should be included in the entity type response + schema: + type: boolean fqlQuery: name: query in: query