[IMPLEMENTED] Filter by case sensitive => Regex search

I have a schema as below:

{
    "properties": {},
    "scripts": {},
    "fieldsInLists": [],
    "fieldsInReferences": [],
    "fields": [
        {
            "name": "name",
            "properties": {
                "fieldType": "String",
                "editor": "Input"
            },
            "partitioning": "invariant"
        },
        {
            "name": "code",
            "properties": {
                "fieldType": "String",
                "editor": "Input"
            },
            "partitioning": "invariant"
        },
        {
            "name": "feideId",
            "properties": {
                "fieldType": "String",
                "editor": "Input"
            },
            "partitioning": "invariant"
        },
        {
            "name": "isClass",
            "properties": {
                "fieldType": "Boolean",
                "editor": "Checkbox"
            },
            "partitioning": "invariant"
        },
        {
            "name": "teacherId",
            "properties": {
                "fieldType": "References",
                "editor": "List",
                "schemaIds": [
                    "7fea852a-bc6a-47e0-bc56-94cb92cb1395"
                ]
            },
            "partitioning": "invariant"
        },
        {
            "name": "studentId",
            "properties": {
                "fieldType": "References",
                "editor": "List",
                "schemaIds": [
                    "7fea852a-bc6a-47e0-bc56-94cb92cb1395"
                ]
            },
            "partitioning": "invariant"
        }
    ],
    "isPublished": true
}

I had data with data/code/iv is tombrider now I want to filter by data/code/iv with case sensitive like TOMBRIDER but it don’t work. Do we have any option to ignore the Case Sensitive?

No, not yet. You can change this to a feature request.

You can use match expressions for that

e.g.

$filter=matchs(data/text/iv, '/regex/i')

This topic was automatically closed after 2 days. New replies are no longer allowed.