8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
taskKey
1 parent 7b355b5 commit 3656dadCopy full SHA for 3656dad
datastore/src/test/java/com/google/datastore/snippets/ConceptsTest.java
@@ -233,6 +233,9 @@ public void testArrayValue() {
233
@Test
234
public void testBasicEntity() {
235
// [START datastore_basic_entity]
236
+ Key taskKey = datastore.newKeyFactory()
237
+ .setKind("Task")
238
+ .newKey("sampleTask");
239
Entity task = Entity.newBuilder(taskKey)
240
.set("category", "Personal")
241
.set("done", false)
0 commit comments