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 01b5d49 commit 4b63ea8Copy full SHA for 4b63ea8
src/hydra/parseHydraDocumentation.ts
@@ -310,10 +310,10 @@ export default function parseHydraDocumentation(
310
? range // Will be updated in a subsequent pass
311
: null,
312
embedded:
313
- "http://www.w3.org/ns/hydra/core#Link" !==
314
- get(supportedProperty, '["@type"][0]')
315
- ? (range as unknown as Resource) // Will be updated in a subsequent pass
316
- : null,
+ get(supportedProperty, '["@type"][0]') ===
+ "http://www.w3.org/ns/hydra/core#Link"
+ ? null
+ : (range as unknown as Resource), // Will be updated in a subsequent pass
317
required: get(
318
supportedProperties,
319
'["http://www.w3.org/ns/hydra/core#required"][0]["@value"]',
0 commit comments