Hi,
I want to be able to pull back all users whose lifecycle is ‘prestart’, but only bring back their ‘ID’
"indices": [
"identities"
],
"query": {
"query": "attributes.cloudLifecycleState:prestart"
}
}
That brings back everything, and this doesn’t make a difference:
{
"indices": [
"identities"
],
"query": {
"query": "attributes.cloudLifecycleState:prestart"
},
"_source": [
"id"
]
}
Is there a way to limit the amount of returned info, as that was 600+ lines of code that I don’t need and would rather not have to parse out after retrieving it
Thanks