I am trying to retrieve the organization-name, or any data from the following endpoint.
https://isumotest.inrupt.net/profile/card#me
However whenever i try to grab anything it always comes back as undefined
const $rdf = require('rdflib')
const store = $rdf.graph();
const me = store.sym('https://isumotest.inrupt.net/profile/card#me');
const profile = me.doc(); //i.e. store.sym(''https://example.com/alice/card#me')
const VCARD = new $rdf.Namespace('http://www.w3.org/2006/vcard/ns#');
const FOAF = new $rdf.Namespace('http://xmlns.com/foaf/0.1/');
let name = store.any(me, VCARD('organization-name'));
console.log(name);
console.log('Request Ended');
For example:
$ node app.js
undefined
Request Ended
Any help is very much appreciated, i have been stuck on this for quite a while.