From 3a615cf364d209127e20641ea7d017a0e62adeee Mon Sep 17 00:00:00 2001 From: cn337131 <141730190+cn337131@users.noreply.github.com> Date: Fri, 29 Nov 2024 11:55:30 +0000 Subject: [PATCH] address comment --- docs/reference/operations-guide/core.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/reference/operations-guide/core.md b/docs/reference/operations-guide/core.md index 27d12a47fc..80451db5b8 100644 --- a/docs/reference/operations-guide/core.md +++ b/docs/reference/operations-guide/core.md @@ -4633,6 +4633,9 @@ as an input. [Javadoc](https://gchq.github.io/Gaffer/uk/gov/gchq/gaffer/operatio Gets the traits of the current store. [Javadoc](https://gchq.github.io/Gaffer/uk/gov/gchq/gaffer/store/operation/GetTraits.html) ??? example "Example getting all traits" + `currentTraits` is an optional field that holds a boolean value. When false the + operation returns a list of all supported traits from the store, but if true then a list of current traits is returned. + Defaults to true. === "Java" @@ -4734,6 +4737,10 @@ Gets the traits of the current store. [Javadoc](https://gchq.github.io/Gaffer/uk Checks if a Store has a given trait. [Javadoc](https://gchq.github.io/Gaffer/uk/gov/gchq/gaffer/store/operation/HasTrait.html) ??? example "Example checking if store has trait" + `currentTraits` is an optional field that holds a boolean value and + defaults to true. It is used to check if the provided traits exists in the either the store default (false) + or the schema current traits (true). + === "Java" ``` java