@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.esm.js CHANGED
@@ -4252,7 +4252,7 @@ const useNodeDetails = (nodeId, flowId) => {
4252
4252
  });
4253
4253
  /**
4254
4254
  * Process outbound triples to extract navigable relationships
4255
- * Filters for entity relationships (o.e === true) and removes duplicates
4255
+ * Filters for entity relationships (where o is an IRI) and removes duplicates
4256
4256
  */
4257
4257
  const outboundRelationships = useMemo(() => {
4258
4258
  if (!outboundTriplesQuery.data)
@@ -4270,7 +4270,7 @@ const useNodeDetails = (nodeId, flowId) => {
4270
4270
  }, [outboundTriplesQuery.data]);
4271
4271
  /**
4272
4272
  * Process inbound triples to extract navigable relationships
4273
- * Filters for entity relationships (s.e === true) and removes duplicates
4273
+ * Filters for entity relationships (where s is an IRI) and removes duplicates
4274
4274
  */
4275
4275
  const inboundRelationships = useMemo(() => {
4276
4276
  if (!inboundTriplesQuery.data)
@@ -4288,7 +4288,7 @@ const useNodeDetails = (nodeId, flowId) => {
4288
4288
  }, [inboundTriplesQuery.data]);
4289
4289
  /**
4290
4290
  * Process properties to extract unique property URIs
4291
- * Properties are triples where o.e === false (literals)
4291
+ * Properties are triples where o is a literal (not an IRI)
4292
4292
  */
4293
4293
  const propertyURIs = useMemo(() => {
4294
4294
  if (!propertiesQuery.data)