I'm querying from a datastore, I only need one column, how do I give the column name in field
Discussion posts and replies are publicly visible
Hi fxzrqjzztrmy please use below code
a!queryEntity( entity: cons!test, query: a!query( selection: a!querySelection( columns: a!queryColumn( field: "columnsNameAsInCDT" ) ), pagingInfo: a!pagingInfo(1,10) )).data
you can change paging as your requirement
Thanks