0

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

Bergi
671k162 gold badges1k silver badges1.5k bronze badges
asked Dec 2, 2025 at 4:52
0

1 Answer 1

0

OK I figured this out... it is <>... So would be:

AND d.[MyValue] <> Foo

answered Dec 2, 2025 at 5:54
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.