Query index

Query index using internal datastore features

Explore further

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

Code sample

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_owner_id 
 = 
 client 
 . 
  query 
 
 ( 
 kind 
 = 
 "Photo" 
 , 
 filters 
 = 
 [( 
 "owner_id" 
 , 
 "=" 
 , 
 "user1234" 
 )]) 
 query_size 
 = 
 client 
 . 
  query 
 
 ( 
 kind 
 = 
 "Photo" 
 , 
 filters 
 = 
 [( 
 "size" 
 , 
 "=" 
 , 
 2 
 )]) 
 query_coloration 
 = 
 client 
 . 
  query 
 
 ( 
 kind 
 = 
 "Photo" 
 , 
 filters 
 = 
 [( 
 "coloration" 
 , 
 "=" 
 , 
 2 
 )]) 
 

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: