CMDBuild Forum

Queries using Webservices soap

Hi,
I’m using Cmdbuild 3.3 webservices Soap

I use getCardList method to obtain a list of cards of a specific class.

If I want a specific card I’ve used getCardList adding a query param like this:

Query query =new Query();
Filter filter = new Filter();
filter.setName(“attribute”);
filter.setOperator(“EQUALS”);
filter.getValue().add(“value”);
query.setFilter(filter);

Now I’d like to do I would like to do something more complicated.
In example I’d like to get only cards with an attribute not null or also card with a specific domain.

Is is possibile usign filter and Query class?

thanks in advance
luca