Skip to content

Commit

Permalink
Adapt to count-service v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peternowee committed Aug 14, 2023
1 parent 4eb4c86 commit 311ac66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/count.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default class CountRoute extends Route {
async model() {
let response = await fetch('/count');
let json = await response.json();
return json.results.bindings[0]["callret-0"]["value"];
return json.results.bindings[0]["triples"]["value"];
}

}

0 comments on commit 311ac66

Please sign in to comment.