Multi value multi timeline from one SQL query

Hi,
I’m trying to get multiple graphs into grafana where each data point should have additional meta information.

SELECT
time,
buildtime,
buildjob,
errors,
warnings,
tests_passed,
tests_failed
FROM build_data
ORDER BY time ASC

So I would like to have one graph line per buildjob that represents the buildtime and if I hover the datapoint on the graph I would like to see the additional info about this buildjob like errors, warnings, tests_passed, and so on.

Is something like this possible?