Inequality sort

Inequality sort must be first. Use inequality sort constraints.

Explore further

For detailed documentation that includes this code sample, see the following:

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 
 . 
 GreaterThan 
 ( 
 "priority" 
 , 
  
 3 
 ), 
  
 Order 
  
 = 
  
 { 
  
 { 
  
 "priority" 
 , 
  
 PropertyOrder 
 . 
 Types 
 . 
 Direction 
 . 
 Ascending 
 }, 
  
 { 
 "created" 
 , 
  
 PropertyOrder 
 . 
 Types 
 . 
 Direction 
 . 
 Ascending 
  
 } 
  
 } 
 }; 
 

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 
 ( 
 "Priority" 
 , 
  
 ">" 
 , 
  
 3 
 ). 
  
 Order 
 ( 
 "Priority" 
 ). 
  
 Order 
 ( 
 "Created" 
 ) 
 

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 
 ( 
 PropertyFilter 
 . 
 gt 
 ( 
 "priority" 
 , 
  
 3 
 )) 
  
 . 
 setOrderBy 
 ( 
 OrderBy 
 . 
 asc 
 ( 
 "priority" 
 ), 
  
 OrderBy 
 . 
 asc 
 ( 
 "created" 
 )) 
  
 . 
 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 
 ( 
 new 
  
 PropertyFilter 
 ( 
 'priority' 
 , 
  
 '>' 
 , 
  
 3 
 )) 
  
 . 
 order 
 ( 
 'priority' 
 ) 
  
 . 
 order 
 ( 
 'created' 
 ); 
 

PHP

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 PHP 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() 
 ->kind('Task') 
 ->filter('priority', '>', 3) 
 ->order('priority') 
 ->order('created'); 
 

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 
 
 () 
 query 
 = 
 client 
 . 
  query 
 
 ( 
 kind 
 = 
 "Task" 
 ) 
 query 
 . 
  add_filter 
 
 ( 
 filter 
 = 
  datastore 
 
 . 
 query 
 . 
  PropertyFilter 
 
 ( 
 "priority" 
 , 
 ">" 
 , 
 3 
 )) 
 query 
 . 
  order 
 
 = 
 [ 
 "priority" 
 , 
 "created" 
 ] 
 

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 
 ( 
 "priority" 
 , 
  
 ">" 
 , 
  
 3 
 ) 
  
 . 
 order 
 ( 
 "priority" 
 ) 
  
 . 
 order 
 ( 
 "created" 
 ) 
 

What's next

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

Create a Mobile Website
View Site in Mobile | Classic
Share by: