We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0de3f7 commit fe8093eCopy full SHA for fe8093e
2 files changed
pyproject.toml
@@ -9,7 +9,7 @@ license = "Apache-2.0"
9
name = "elimity-insights-client"
10
readme = "README.md"
11
repository = "https://github.com/elimity-com/insights-client-python"
12
-version = "10.2.1b0"
+version = "10.2.1b1"
13
14
[tool.poetry.dependencies]
15
python = "^3.7"
src/elimity_insights_client/api/entities/_entities.py
@@ -26,7 +26,9 @@ def entities(
26
schemas = {
27
source.id: source.domain_graph_schema
28
for source in sos
29
- if linked_source_ids is None or source.id in linked_source_ids
+ if source.id == entity_type.source_id
30
+ or linked_source_ids is None
31
+ or source.id in linked_source_ids
32
}
33
que = query(entity_type, schemas)
34
queries = [que]
0 commit comments