@trustgraph/react-state 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4253,7 +4253,7 @@ const useNodeDetails = (nodeId, flowId) => {
|
|
|
4253
4253
|
});
|
|
4254
4254
|
/**
|
|
4255
4255
|
* Process outbound triples to extract navigable relationships
|
|
4256
|
-
* Filters for entity relationships (o
|
|
4256
|
+
* Filters for entity relationships (where o is an IRI) and removes duplicates
|
|
4257
4257
|
*/
|
|
4258
4258
|
const outboundRelationships = react.useMemo(() => {
|
|
4259
4259
|
if (!outboundTriplesQuery.data)
|
|
@@ -4271,7 +4271,7 @@ const useNodeDetails = (nodeId, flowId) => {
|
|
|
4271
4271
|
}, [outboundTriplesQuery.data]);
|
|
4272
4272
|
/**
|
|
4273
4273
|
* Process inbound triples to extract navigable relationships
|
|
4274
|
-
* Filters for entity relationships (s
|
|
4274
|
+
* Filters for entity relationships (where s is an IRI) and removes duplicates
|
|
4275
4275
|
*/
|
|
4276
4276
|
const inboundRelationships = react.useMemo(() => {
|
|
4277
4277
|
if (!inboundTriplesQuery.data)
|
|
@@ -4289,7 +4289,7 @@ const useNodeDetails = (nodeId, flowId) => {
|
|
|
4289
4289
|
}, [inboundTriplesQuery.data]);
|
|
4290
4290
|
/**
|
|
4291
4291
|
* Process properties to extract unique property URIs
|
|
4292
|
-
* Properties are triples where o
|
|
4292
|
+
* Properties are triples where o is a literal (not an IRI)
|
|
4293
4293
|
*/
|
|
4294
4294
|
const propertyURIs = react.useMemo(() => {
|
|
4295
4295
|
if (!propertiesQuery.data)
|