datajunction-server 0.0.126__tar.gz → 0.0.128__tar.gz

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.
@@ -127,6 +127,9 @@ client_secret*
127
127
  Untitled*
128
128
  .notebook_executed
129
129
 
130
+ # dev slot config
131
+ .dev-port
132
+
130
133
  # postgres
131
134
  postgres_metadata
132
135
  postgres_superset
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datajunction-server
3
- Version: 0.0.126
3
+ Version: 0.0.128
4
4
  Summary: DataJunction server library for running to a DataJunction server
5
5
  Project-URL: Homepage, https://datajunction.io
6
6
  Project-URL: Repository, https://github.com/DataJunction/dj
@@ -453,6 +453,11 @@ type Query {
453
453
 
454
454
  """Find nodes based on the search parameters."""
455
455
  findNodes(
456
+ """
457
+ Full-text search across node name, display name, and description. Results are ranked by pg_trgm similarity and boosted toward the main branch when a node exists in a git-backed namespace.
458
+ """
459
+ search: String = null
460
+
456
461
  """A fragment of a node name to search for"""
457
462
  fragment: String = null
458
463
 
@@ -482,6 +487,11 @@ type Query {
482
487
  """Filter to nodes owned by this user"""
483
488
  ownedBy: String = null
484
489
 
490
+ """
491
+ When combined with ownedBy, also include nodes owned by any group the user is a member of.
492
+ """
493
+ includeTeam: Boolean! = false
494
+
485
495
  """Filter to nodes missing descriptions (for data quality checks)"""
486
496
  missingDescription: Boolean! = false
487
497
 
@@ -505,6 +515,11 @@ type Query {
505
515
 
506
516
  """Find nodes based on the search parameters with pagination"""
507
517
  findNodesPaginated(
518
+ """
519
+ Full-text search across node name, display name, and description. When set, results are filtered by trigram match. Ranking by similarity is applied only on the unpaginated `findNodes` query; paginated results keep the normal sort order.
520
+ """
521
+ search: String = null
522
+
508
523
  """A fragment of a node name to search for"""
509
524
  fragment: String = null
510
525
 
@@ -534,6 +549,11 @@ type Query {
534
549
  """Filter to nodes owned by this user"""
535
550
  ownedBy: String = null
536
551
 
552
+ """
553
+ When combined with ownedBy, also include nodes owned by any group the user is a member of.
554
+ """
555
+ includeTeam: Boolean! = false
556
+
537
557
  """Filter to nodes missing descriptions (for data quality checks)"""
538
558
  missingDescription: Boolean! = false
539
559
 
@@ -617,6 +637,17 @@ type Query {
617
637
  """Find DJ node tags based on the search parameters."""
618
638
  listTags(tagNames: [String!] = null, tagTypes: [String!] = null): [Tag!]!
619
639
 
640
+ """
641
+ Trigram-ranked search across tag name, display name, and description. Used by the global search bar for tag autocomplete.
642
+ """
643
+ searchTags(
644
+ """Query string to match against tag name, display name, and description."""
645
+ search: String!
646
+
647
+ """Maximum number of matching tags to return."""
648
+ limit: Int! = 10
649
+ ): [Tag!]!
650
+
620
651
  """List all DJ node tag types"""
621
652
  listTagTypes: [String!]!
622
653