{"id":18155512,"url":"https://github.com/kitagry/bqls","last_synced_at":"2026-05-24T07:04:20.660Z","repository":{"id":176198899,"uuid":"651942058","full_name":"kitagry/bqls","owner":"kitagry","description":"BigQuery language server","archived":false,"fork":false,"pushed_at":"2026-05-05T11:55:09.000Z","size":848,"stargazers_count":46,"open_issues_count":10,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-05-05T13:40:22.086Z","etag":null,"topics":["bigquery","language-server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kitagry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-10T15:11:17.000Z","updated_at":"2026-05-05T11:55:14.000Z","dependencies_parsed_at":"2025-12-05T06:07:38.782Z","dependency_job_id":null,"html_url":"https://github.com/kitagry/bqls","commit_stats":null,"previous_names":["kitagry/bqls"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/kitagry/bqls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitagry%2Fbqls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitagry%2Fbqls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitagry%2Fbqls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitagry%2Fbqls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kitagry","download_url":"https://codeload.github.com/kitagry/bqls/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitagry%2Fbqls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33424576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T22:14:44.296Z","status":"online","status_checked_at":"2026-05-24T02:00:06.296Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bigquery","language-server"],"created_at":"2024-11-02T04:11:40.615Z","updated_at":"2026-05-24T07:04:20.655Z","avatar_url":"https://github.com/kitagry.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bqls\n\nBigQuery language server\n\nhttps://github.com/user-attachments/assets/3e980a26-bc9b-4c2b-8c5b-1e9582a6a644\n\n## Installation\n\n### Prerequisites\n\n- Go 1.25 or later\n\n### Install from releases\n\nDownload the latest binary from [GitHub Releases](https://github.com/kitagry/bqls/releases) and place it in your PATH.\n\n### Build from source\n\n```bash\ngo install\n```\n\n## Settings\n\n### Login to use BigQuery API\n\n```bash\ngcloud auth login\ngcloud auth application-default login\n```\n\n### Neovim\n\nYou can use [bqls.nvim](https://github.com/kitagry/bqls.nvim) to integrate BigQuery with Neovim.\n\nYou can specify your BigQuery Project ID and location in the configuration. If not specified, the plugin will use `gcloud config get project` for the Project ID and `US` as the default location.\n\n```lua\nrequire(\"lspconfig\").bqls.setup({\n  settings = {\n    project_id = \"YOUR_PROJECT_ID\",\n    location = \"YOUR_LOCATION\",\n  },\n})\n```\n\nYou can change project_id with `workspace/didChangeConfiguration`.\n\n```lua\nvim.lsp.buf_notify(0, \"workspace/didChangeConfiguration\", { settings = { project_id = \"ANOTHER_PROJECT_ID\", location = \"ANOTHER_LOCATION\" } })\n```\n\n### VSCode\n\nYou can use [bqls-vscode](https://github.com/yokomotod/bqls-vscode).\n\n## Save Result\n\nIn order to save for spreadsheet, you should enable Google Drive API.\n\n1. Enable [Google Drive API](https://console.cloud.google.com/marketplace/product/google/drive.googleapis.com) and [Google Sheets API](https://console.cloud.google.com/marketplace/product/google/sheets.googleapis.com)\n2. `gcloud auth application-default login --scopes=https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/drive`\n\n## Supported Protocol\n\n- textDocument/formatting\n- textDocument/hover\n- textDocument/completion\n- textDocument/definition\n- textDocument/codeAction\n- [workspace/executeCommand](./docs/api_reference.md#workspaceexecutecommand)\n    - [bqls.executeQuery](./docs/api_reference.md#bqlsexecutequery)\n    - [bqls.listDatasets](./docs/api_reference.md#bqlslistdatasets)\n    - [bqls.listTables](./docs/api_reference.md#bqlslisttables)\n    - [bqls.listJobHistories](./docs/api_reference.md#bqlslistjobhistories)\n    - [bqls.saveResult](./docs/api_reference.md#bqlssaveresult)\n- workspace/didChangeConfiguration\n- [bqls/virtualTextDocument](./docs/api_reference.md#bqlsvirtualtextdocument)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitagry%2Fbqls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkitagry%2Fbqls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitagry%2Fbqls/lists"}