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.
1 parent 8df371e commit 4916558Copy full SHA for 4916558
store/test-store/tests/postgres/writable.rs
@@ -114,7 +114,8 @@ fn count_key(id: &str) -> EntityKey {
114
async fn insert_count(store: &Arc<DieselSubgraphStore>, deployment: &DeploymentLocator, count: u8) {
115
let data = entity! { TEST_SUBGRAPH_SCHEMA =>
116
id: "1",
117
- count: count as i32
+ count: count as i32,
118
+ vid: count as i64,
119
};
120
let entity_op = EntityOperation::Set {
121
key: count_key(&data.get("id").unwrap().to_string()),
0 commit comments