When paging through graphql lineage results over a...
# troubleshoot
b
When paging through graphql lineage results over about 2000 (ie start: 2000, count: any number) I'm getting timeouts from the server. Am I able to increase that timeout? Narrowing the query isn't an option, the other choice I see would be to manually recurse through the lineage rather than grabbing it all at once
b
Hi @brave-forest-5974! Do you mind pasting your GraphQL query?
b
@big-carpet-38439
Copy code
query searchAcrossLineage($input: SearchAcrossLineageInput!) {
	  searchAcrossLineage(input: $input) {
		start
		count
		total
		searchResults {
          degree
		  entity {
			type
			... on Dataset {
			  name
			  platform {
				name
			  }
			}
		  }
		}
	  }
	}
b
Oh wow! Nice query 🙂 @early-lamp-41924 @green-football-43791 Seems that this endpoint gets very slow once a certain pagination threshold is reached. I'm guessing you folks would know why 🙂
thank you 1