For example, I have the following:
first_count = 5000
query = '''
{
students(first: first_count) {
id
firstName
college {
id
name
location
rating
}
}
}
'''
In the second line of the query, the first_count is supposed to be a variable but I am unfortunately having a hard time making it dynamic. I wanted to do an f string, but I am losing the multi line string to and also using escape characters. Is there any way to insert a variable in this string to make it dynamic, while keeping the multi-line format?