Hello, We are using solr 9, we have a field id, our use case is like this
If I have some ids to sort, suppose it has Id1, id2, id3, id4 The solr sorting should be id1 > id2 > id3 > id4 > any other documents in solr. We don't have a defining field that I can index and use the sorting functionality. I have tried using the eq function, where for the highest id I provide the value as ListSize, then reducing it by 1. *if(eq(id,"id1"),2,0) desc,**if(eq(id,"id2"),1,0) desc -> *this does not work according to use case is there a better approach then above or is there a way to merge these different sorts into one sort? Thanks in advance.