Just wondering how do I make a query for an undefined var in the Game Data type.
My scenario:
Game Data query returns at most 100 OBJs, i want to be able to iterate through these items if my OBJ count exceeds 100. It's too much work to manually insert a new "ID":"xx" for every single OBJ, and I do not want IDs to repeat.
Initial insert isn't the problem as I just have to query for any 100 OBJs and add the ID to those OBJs, but for the second search, how do I go for API.S("ID").eq(undefined)?
ID is a number type, if that makes any difference.
I have tried (API.S) and (API.N) for both "null" and "undefined" values but it does not return the results I want.
Zack Cee
Hi,
Just wondering how do I make a query for an undefined var in the Game Data type.
My scenario:
Game Data query returns at most 100 OBJs, i want to be able to iterate through these items if my OBJ count exceeds 100. It's too much work to manually insert a new "ID":"xx" for every single OBJ, and I do not want IDs to repeat.
Initial insert isn't the problem as I just have to query for any 100 OBJs and add the ID to those OBJs, but for the second search, how do I go for API.S("ID").eq(undefined)?
ID is a number type, if that makes any difference.
I have tried (API.S) and (API.N) for both "null" and "undefined" values but it does not return the results I want.
Thanks.