Is it possible to use variables with regex search in Go? We could built the query with SprintF but that would be insecure. ` q := `query Search($searchterm: string) { subdomains(func: regexp(name, /^.*$searchterm/)) { uid:uid name:name } }` `