All Spring Data Query whether it is JPQL/HQL or a native SQL query support parameters coming from java code. Typically @query annotates a method, then :1
or ?2
found in the query would stand for the first and second parameter of the Java method respectively. It's be useful to show the name of the Java method parameter as inline hint to indicate which parameter the number corresponds to