Invalid inequality range filter

An example of an invalid inequality range filter.

Code sample

C#

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode C# API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  Query 
  
 query 
  
 = 
  
 new 
  
 Query 
 ( 
 "Task" 
 ) 
 { 
  
 Filter 
  
 = 
  
 Filter 
 . 
 And 
 ( 
 Filter 
 . 
 GreaterThan 
 ( 
 "created" 
 , 
  
 _startDate 
 ), 
  
 Filter 
 . 
 GreaterThan 
 ( 
 "priority" 
 , 
  
 3 
 )) 
 }; 
 

Go

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Go API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  query 
  
 := 
  
 datastore 
 . 
 NewQuery 
 ( 
 "Task" 
 ). 
  
 FilterField 
 ( 
 "Created" 
 , 
  
 ">" 
 , 
  
 time 
 . 
 Date 
 ( 
 1990 
 , 
  
 1 
 , 
  
 1 
 , 
  
 0 
 , 
  
 0 
 , 
  
 0 
 , 
  
 0 
 , 
  
 time 
 . 
 UTC 
 )). 
  
 FilterField 
 ( 
 "Priority" 
 , 
  
 ">" 
 , 
  
 3 
 ) 
 

Java

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Java API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  Query<Entity> 
  
 query 
  
 = 
  
 Query 
 . 
 newEntityQueryBuilder 
 () 
  
 . 
 setKind 
 ( 
 "Task" 
 ) 
  
 . 
 setFilter 
 ( 
  
 CompositeFilter 
 . 
 and 
 ( 
  
 PropertyFilter 
 . 
 gt 
 ( 
 "created" 
 , 
  
 startDate 
 ), 
  
 PropertyFilter 
 . 
 gt 
 ( 
 "priority" 
 , 
  
 3 
 ))) 
  
 . 
 build 
 (); 
 

Node.js

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Node.js API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  const 
  
 query 
  
 = 
  
 datastore 
  
 . 
 createQuery 
 ( 
 'Task' 
 ) 
  
 . 
 filter 
 ( 
  
 and 
 ([ 
  
 new 
  
 PropertyFilter 
 ( 
 'priority' 
 , 
  
 '>' 
 , 
  
 3 
 ), 
  
 new 
  
 PropertyFilter 
 ( 
 'created' 
 , 
  
 '>' 
 , 
  
 new 
  
 Date 
 ( 
 '1990-01-01T00:00:00z' 
 )), 
  
 ]), 
  
 ); 
 

Python

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Python API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  from 
  
 google.cloud 
  
 import 
  datastore 
 
 # For help authenticating your client, visit 
 # https://cloud.google.com/docs/authentication/getting-started 
 client 
 = 
  datastore 
 
 . 
  Client 
 
 () 
 import 
  
 datetime 
 start_date 
 = 
 datetime 
 . 
 datetime 
 ( 
 1990 
 , 
 1 
 , 
 1 
 ) 
 query 
 = 
 client 
 . 
  query 
 
 ( 
 kind 
 = 
 "Task" 
 ) 
 query 
 . 
  add_filter 
 
 ( 
 filter 
 = 
  datastore 
 
 . 
 query 
 . 
  PropertyFilter 
 
 ( 
 "created" 
 , 
 ">" 
 , 
 start_date 
 ) 
 ) 
 query 
 . 
  add_filter 
 
 ( 
 filter 
 = 
  datastore 
 
 . 
 query 
 . 
  PropertyFilter 
 
 ( 
 "priority" 
 , 
 ">" 
 , 
 3 
 )) 
 

Ruby

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Ruby API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  query 
  
 = 
  
 datastore 
 . 
 query 
 ( 
 "Task" 
 ) 
  
 . 
 where 
 ( 
 "created" 
 , 
  
 ">=" 
 , 
  
 Time 
 . 
 utc 
 ( 
 1990 
 , 
  
 1 
 , 
  
 1 
 )) 
  
 . 
 where 
 ( 
 "priority" 
 , 
  
 ">" 
 , 
  
 3 
 ) 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Design a Mobile Site
View Site in Mobile | Classic
Share by: