Update GLQL presenter to support Pipeline/Jobs
## Summary The GLQL library supports querying Pipelines and Jobs as source types. The GitLab frontend GLQL presenter needs to be updated to render `Pipeline` and `Job` objects correctly. Since there are no existing presenter components for `Pipeline` or `Job`, new dedicated presenter components need to be created. This can be done as part of a GLQL version bump as a follow-up once the Pipeline/Job source types have been released in the next GLQL version. ## Verification After implementation, verify that GLQL blocks with Pipeline and Job queries render correctly. **Pipeline example:** ```glql query: type = Pipeline and project = "gitlab-org/gitlab" fields: id, status, createdAt, finishedAt display: table ``` Pipelines should render as clickable links showing the pipeline ID (e.g. `#12345`). **Job example:** ```glql query: type = Job and project = "gitlab-org/gitlab" fields: name, status, duration display: table ``` Jobs should render as clickable links showing the job name.
issue