Lookup

Looks up a single entity.

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 .

  Entity 
  
 task 
  
 = 
  
 _db 
 . 
 Lookup 
 ( 
 _sampleTask 
 . 
 Key 
 ); 
 

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 .

  var 
  
 task 
  
 Task 
 taskKey 
  
 := 
  
 datastore 
 . 
 NameKey 
 ( 
 "Task" 
 , 
  
 "sampleTask" 
 , 
  
 nil 
 ) 
 err 
  
 := 
  
 client 
 . 
 Get 
 ( 
 ctx 
 , 
  
 taskKey 
 , 
  
& task 
 ) 
 

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 .

  Entity 
  
 task 
  
 = 
  
 datastore 
 . 
 get 
 ( 
 taskKey 
 ); 
 

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 
  
 taskKey 
  
 = 
  
 datastore 
 . 
 key 
 ( 
 'Task' 
 ); 
 const 
  
 [ 
 entity 
 ] 
  
 = 
  
 await 
  
 datastore 
 . 
 get 
 ( 
 taskKey 
 ); 
 // entity = { 
 //   category: 'Personal', 
 //   done: false, 
 //   priority: 4, 
 //   description: 'Learn Cloud Datastore', 
 //   [Symbol(KEY)]: 
 //    Key { 
 //      namespace: undefined, 
 //      id: '...', 
 //      kind: 'Task', 
 //      path: [Getter] 
 //    } 
 //   } 
 // }; 
 console 
 . 
 log 
 ( 
 entity 
 ); 
 

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 .

  $task = $datastore->lookup($key); 
 

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 
 
 () 
 key 
 = 
 client 
 . 
  key 
 
 ( 
 "Task" 
 , 
 "sampleTask" 
 ) 
 task 
 = 
 client 
 . 
  get 
 
 ( 
 key 
 ) 
 

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 .

  # task_name = "sampleTask" 
 task_key 
  
 = 
  
 datastore 
 . 
 key 
  
 "Task" 
 , 
  
 task_name 
 task 
  
 = 
  
 datastore 
 . 
 find 
  
 task_key 
 

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: