Skip to content

Commit

Permalink
fix: fix property signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
recalcitrantsupplant committed Nov 14, 2024
1 parent c803cdb commit acff052
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prez/services/query_generation/search_fuseki_fts.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,13 @@ def order_by_direction(self):

@property
def limit(self):
return self.solution_modifier.limit_offset.limit_clause.limit
return self.where_clause.group_graph_pattern.content.solution_modifier.limit_offset.limit_clause.limit

@property
def offset(self):
return self.solution_modifier.limit_offset.offset_clause.offset
return (
self.where_clause.group_graph_pattern.content.solution_modifier.limit_offset.offset_clause.offset
)

@property
def tss_list(self):
Expand Down

0 comments on commit acff052

Please sign in to comment.