Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
If I wanted to do a wildcard query on the following collection and element. What would the syntax be./Document[ScientificData/CABTitle=‘test*’ and DocID=‘18*’]This was my initial thought, but it returns nothing.Thank you,Andy
Hi Andy,Try/Document[ScientificData/CABTitle~=‘test*’ and DocID~=‘18*’]To use wildcards, you have to use the “~=” operator.Note that the following query is equivalent in functionality, and may be more efficient:/Document[ScientificData/CABTitle~=‘test*’][DocID~=‘18*’]Regards,Puny Sen