I am trying to query the ServiceFeatureTable
using ArcGIS java. If we use REST service to query we can query based on the CreationDate. I am trying to do the same thing using ArcGIS java. runtime SDK as below
ServiceFeatureTable featureTable = new ServiceFeatureTable(url);
QueryParameters query = new QueryParameters();
query.setWhereClause("CreationDate >= '1527671854180'");
query.setReturnGeometry(true);
ListenableFuture<FeatureQueryResult> queryFeaturesAsync = featureTable.queryFeaturesAsync(query);
But it is giving com.esri.arcgisruntime.io.JsonEmbeddedException: Cannot perform query. Invalid query parameters.
Is it possible to query ServiceFeatureTable
based on the CreationDate?emphasized text