I am a system backend developer and use Tracker as an engine for file search, including adding Spotlight support to samba. Now, our customers feedback a feature request that they want to have detailed information on the spotlight search results, such as Date Modified, Size and etc. I checked the source code of samba: https://github.com/samba-team/samba/blob/master/source3/rpc_server/mdssvc/sparql_parser.y slq->sparql_query = talloc_asprintf(slq, "SELECT ?url WHERE { %s . ?obj nie:url ?url . " "FILTER(tracker:uri-is-descendant('file://%s/', ?url)) }", s.result, slq->path_scope); `SELECT ?url WHERE ` is the same as AFP's SPARQL statement. I found that the query could only get the path of the file without with the file details. Could you please add this feature to let spotlight return the details of the file? Thanks, -Jacob