René's URL Explorer Experiment


Title: Query result during transaction will be blank if there's already a query with a similar "group" defined. · Issue #259 · tinyplex/tinybase · GitHub

Open Graph Title: Query result during transaction will be blank if there's already a query with a similar "group" defined. · Issue #259 · tinyplex/tinybase

X Title: Query result during transaction will be blank if there's already a query with a similar "group" defined. · Issue #259 · tinyplex/tinybase

Description: Describe the bug In a pretty specific situation, a query result will return BLANK during a transaction. You can see it in the code below (and in the linked stackblitz). To reproduce: define a first query with a group keyword. start a tra...

Open Graph Description: Describe the bug In a pretty specific situation, a query result will return BLANK during a transaction. You can see it in the code below (and in the linked stackblitz). To reproduce: define a first...

X Description: Describe the bug In a pretty specific situation, a query result will return BLANK during a transaction. You can see it in the code below (and in the linked stackblitz). To reproduce: define a first...

Opengraph URL: https://github.com/tinyplex/tinybase/issues/259

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Query result during transaction will be blank if there's already a query with a similar \"group\" defined.","articleBody":"### Describe the bug\n\nIn a pretty specific situation, a query result will return BLANK during a transaction. You can see it in the code below (and in the linked stackblitz).\n\nTo reproduce:\n- define a first query with a group keyword.\n- start a transaction\n- define another query (on the same table) with a group keyword (can be a different column!)\n- call `getResultTable` and see that it's blank\n- finish the transaction\n- call `getResultTable` and see that it does return a value\n\nSee the following code (and linked reproduction).\n\n```ts\nconst store = createMergeableStore().setSchema(\n\t{\n\t\trecords: {\n\t\t\taccount: { type: 'string' },\n\t\t\tamount: { type: 'number' },\n\t\t\tdecimals: { type: 'number' },\n\t\t},\n\t},\n\t{}\n);\nstore.setTables({\n\trecords: generateDummyData(),\n});\n\nconst queries = createQueries(store);\n\nqueries.setQueryDefinition('budgetTotal', 'records', (keywords) =\u003e {\n\tkeywords.select('account');\n\tkeywords.select('amount');\n\t// if you comment out the group line here, the second query will work correctly.\n\tkeywords.group('amount', 'avg');\n});\n\nif (enableTransaction) {\n\tstore.startTransaction();\n}\n\nconst queryId = `otherQuery`;\nqueries.setQueryDefinition(queryId, 'records', (keywords) =\u003e {\n\tkeywords.select('amount');\n\tkeywords.where('account', '1');\n\t// or if you remove group here, this query will work correctly.\n\t// also has issues if you group by a completely different column\n\tkeywords.group('amount', 'sum');\n});\n\nconsole.log('first', JSON.stringify(queries.getResultTable(queryId))); // BLANK!\nconsole.log('second', JSON.stringify(queries.getResultTable(queryId))); // BLANK!\n\nif (enableTransaction) {\n\tstore.finishTransaction();\n\tconsole.log(\n\t\t'after transaction',\n\t\tJSON.stringify(queries.getResultTable(queryId))\n\t);\n}\n```\n\n### Your Example Website or App\n\nhttps://stackblitz.com/edit/vitejs-vite-jec8c4bm?file=src%2Fcounter.ts\n\n### Expected behavior\n\nI would expect the query to return correct data, even mid-transaction.\n\n### Platform\n\n- OS: macOS\n- Browser: Brave\n- Version: 6.3","author":{"url":"https://github.com/willhoney7","@type":"Person","name":"willhoney7"},"datePublished":"2025-07-08T03:03:59.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/259/tinybase/issues/259"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:a6d16f0b-6db2-10d8-7a0e-7b1f010696e6
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9B2E:86A36:A7648D:F0A39C:6A4E456A
html-safe-nonce62c66533a9ea181b38057d78011e3927cca6ce483ce9740d7b83554033770afd
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5QjJFOjg2QTM2OkE3NjQ4RDpGMEEzOUM6NkE0RTQ1NkEiLCJ2aXNpdG9yX2lkIjoiMTI4OTIxNjc0NDQzMTE3NTAxOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac4f9ef35fdacbb7175ccf15b2d0dfc973cd60fb88f0a8621e2d45ba421cb54f78
hovercard-subject-tagissue:3210854707
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/tinyplex/tinybase/259/issue_layout
twitter:imagehttps://opengraph.githubassets.com/16d3108e5bf5a617434adea2167b0c01146b5b0c693b111d22cfade264a52f65/tinyplex/tinybase/issues/259
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/16d3108e5bf5a617434adea2167b0c01146b5b0c693b111d22cfade264a52f65/tinyplex/tinybase/issues/259
og:image:altDescribe the bug In a pretty specific situation, a query result will return BLANK during a transaction. You can see it in the code below (and in the linked stackblitz). To reproduce: define a first...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamewillhoney7
hostnamegithub.com
expected-hostnamegithub.com
None030096ee0db095447bfe77409d33bfac127ca7128299c58deef27c52eaa1b1f0
turbo-cache-controlno-preview
go-importgithub.com/tinyplex/tinybase git https://github.com/tinyplex/tinybase.git
octolytics-dimension-user_id96894742
octolytics-dimension-user_logintinyplex
octolytics-dimension-repository_id443220240
octolytics-dimension-repository_nwotinyplex/tinybase
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id443220240
octolytics-dimension-repository_network_root_nwotinyplex/tinybase
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9fabff9b8b127e686a3ec86f91422e818056ca2c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/tinyplex/tinybase/issues/259#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ftinyplex%2Ftinybase%2Fissues%2F259
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ftinyplex%2Ftinybase%2Fissues%2F259
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=tinyplex%2Ftinybase
Reloadhttps://github.com/tinyplex/tinybase/issues/259
Reloadhttps://github.com/tinyplex/tinybase/issues/259
Reloadhttps://github.com/tinyplex/tinybase/issues/259
Please reload this pagehttps://github.com/tinyplex/tinybase/issues/259
tinyplex https://github.com/tinyplex
tinybasehttps://github.com/tinyplex/tinybase
Please reload this pagehttps://github.com/tinyplex/tinybase/issues/259
Notifications https://github.com/login?return_to=%2Ftinyplex%2Ftinybase
Fork 130 https://github.com/login?return_to=%2Ftinyplex%2Ftinybase
Star 5.1k https://github.com/login?return_to=%2Ftinyplex%2Ftinybase
Code https://github.com/tinyplex/tinybase
Issues 26 https://github.com/tinyplex/tinybase/issues
Pull requests 0 https://github.com/tinyplex/tinybase/pulls
Discussions https://github.com/tinyplex/tinybase/discussions
Actions https://github.com/tinyplex/tinybase/actions
Projects https://github.com/tinyplex/tinybase/projects
Security and quality 0 https://github.com/tinyplex/tinybase/security
Insights https://github.com/tinyplex/tinybase/pulse
Code https://github.com/tinyplex/tinybase
Issues https://github.com/tinyplex/tinybase/issues
Pull requests https://github.com/tinyplex/tinybase/pulls
Discussions https://github.com/tinyplex/tinybase/discussions
Actions https://github.com/tinyplex/tinybase/actions
Projects https://github.com/tinyplex/tinybase/projects
Security and quality https://github.com/tinyplex/tinybase/security
Insights https://github.com/tinyplex/tinybase/pulse
Query result during transaction will be blank if there's already a query with a similar "group" defined.https://github.com/tinyplex/tinybase/issues/259#top
https://github.com/willhoney7
as designedI think this is how it is supposed to work...https://github.com/tinyplex/tinybase/issues?q=state%3Aopen%20label%3A%22as%20designed%22
more info requiredCould you answer a few extra questions to clarify?https://github.com/tinyplex/tinybase/issues?q=state%3Aopen%20label%3A%22more%20info%20required%22
https://github.com/willhoney7
willhoney7https://github.com/willhoney7
on Jul 8, 2025https://github.com/tinyplex/tinybase/issues/259#issue-3210854707
https://stackblitz.com/edit/vitejs-vite-jec8c4bm?file=src%2Fcounter.tshttps://stackblitz.com/edit/vitejs-vite-jec8c4bm?file=src%2Fcounter.ts
willhoney7https://github.com/willhoney7
as designedI think this is how it is supposed to work...https://github.com/tinyplex/tinybase/issues?q=state%3Aopen%20label%3A%22as%20designed%22
more info requiredCould you answer a few extra questions to clarify?https://github.com/tinyplex/tinybase/issues?q=state%3Aopen%20label%3A%22more%20info%20required%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.