Trying to figure out the opposite of '=' in this example query from this page: https://www.ibm.com/docs/en/filenet-p8-platform/5.6.0?topic=development-search-api-considerations
{
documents(
repositoryIdentifier:"OS1"
from:"Document d WITH INCLUDESUBCLASSES"
where:"(ISCLASS(d,MyDocument) OR ISCLASS(d,MyOtherDocument)) AND d.[DateCreated] > 20180815T070000Z AND d.[IsCurrentVersion] = True"
orderBy:"DocumentTitle"
pageSize:20
)
{
...
}
}
So if I have something like:
AND d.[MyValue] = Foo
How do i do Not Equal to Foo?
tried ne, NOT, neq etc etc
1 Answer 1
OK I figured this out... it is <>... So would be:
AND d.[MyValue] <> Foo
answered Dec 2, 2025 at 5:54
pelagos
1,0913 gold badges17 silver badges28 bronze badges
Sign up to request clarification or add additional context in comments.