Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should construct a subject with no properties #146

Open
Peeja opened this issue Apr 6, 2023 · 0 comments
Open

Should construct a subject with no properties #146

Peeja opened this issue Apr 6, 2023 · 0 comments

Comments

@Peeja
Copy link
Contributor

Peeja commented Apr 6, 2023

test('constructs a subject with no properties', async () => {
  await api.write<Subject>({ '@id': 'fred', name: 'Fred' });
  await api.write<Subject>({ '@id': 'wilma', name: 'Wilma' });
  await expect(api.read<Construct>({
    '@construct': { '@id': '?' }
  })).resolves.toMatchObject([{ '@id': 'fred' }, { '@id': 'wilma' }]);
});

Instead, we get: [{ "@id": "_:b704b2" }]

Potentially, we should get [], but we definitely shouldn't get one empty blank node.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant