Skip to main content

V1 - Query - Field Content Filter

sContent(field, value)

The sContent filter is used to search/match the exact content of a field. This filter is case-insensitive.

search sContent("@tags","fpl-example-data")

In the above example, the search matches all records where the value of the '@tags' field matches 'fpl-example-data'.

Likewise, the following search will match the same data set:

search sContent("@tags","FPL-EXAMPLE-DATA")

Example

The example below uses the demo-dataset from the introduction/tutorial page, dataset.

search sContent("@tags","fpl-example-data")
let {id, isprime} = f("@fields")

Note that the search filter itself does not return a presentable value. It is almost always following by the data extraction command 'let'.

Page last updated: 2022 Oct 02