> So the NodeList obtained through cloud.getList(query) seems to contain ONLY
> the specified fields, but when I print it the mysterious "url.descripcion"
> field appears when it should be blank (because it's not in the query field
> list).
cluser nodes implements laizy loading if know the number from the object
in your example you add url.number
b.t.w. in my code I try to never use clusternode.getStringValue("url.title");
I always do something like this
Node urlNode = clusterNode.getNodeValue("url");
urlNode.getStringValue("title");
I think this makes your code more readable and portable
>
> The NodeList obtained using NodeQuery instead of Query doesn't contain "not
> specifically added fields" either.
>
> Any ideas?
But I don't really understand your problem:)