home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 683812642

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

id ▼ html_url issue_url node_id user created_at updated_at author_association body reactions issue performed_via_github_app
678480969 https://github.com/simonw/sqlite-utils/issues/136#issuecomment-678480969 https://api.github.com/repos/simonw/sqlite-utils/issues/136 MDEyOklzc3VlQ29tbWVudDY3ODQ4MDk2OQ== simonw 9599 2020-08-21T20:33:45Z 2020-08-21T20:33:45Z OWNER I think this should initialize SpatiaLite against the current database if it has not been initialized already. Relevant code: https://github.com/simonw/shapefile-to-sqlite/blob/e754d0747ca2facf9a7433e2d5d15a6a37a9cf6e/shapefile_to_sqlite/utils.py#L112-L126 ```python def init_spatialite(db, lib): db.conn.enable_load_extension(True) db.conn.load_extension(lib) # Initialize SpatiaLite if not yet initialized if "spatial_ref_sys" in db.table_names(): return db.conn.execute("select InitSpatialMetadata(1)") def ensure_table_has_geometry(db, table, table_srid): if "geometry" not in db[table].columns_dict: db.conn.execute( "SELECT AddGeometryColumn(?, 'geometry', ?, 'GEOMETRY', 2);", [table, table_srid], ) ``` Not sure if I should add a utility function or CLI command for that `ensure_table_has_geometry` bit. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} --load-extension=spatialite shortcut option 683812642  
678508056 https://github.com/simonw/sqlite-utils/issues/136#issuecomment-678508056 https://api.github.com/repos/simonw/sqlite-utils/issues/136 MDEyOklzc3VlQ29tbWVudDY3ODUwODA1Ng== simonw 9599 2020-08-21T21:13:41Z 2020-08-21T21:13:41Z OWNER The `--spatialite` option should be available for other useful commands too, refs #137. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} --load-extension=spatialite shortcut option 683812642  
710428802 https://github.com/simonw/sqlite-utils/issues/136#issuecomment-710428802 https://api.github.com/repos/simonw/sqlite-utils/issues/136 MDEyOklzc3VlQ29tbWVudDcxMDQyODgwMg== simonw 9599 2020-10-16T18:56:47Z 2020-10-16T18:56:47Z OWNER To keep the code cleaner, I'm tempted to support this instead: --load-extension=spatialite Where `spatialite` is a special shortcut value that triggers a search for that module in known locations. Users could still load a module in a file called `spatialite` in the current directory using: --load-extension=./spatialite In fact, `--load-extension=spatialite` could handle that case too by always checking for a file called `spatialite` before attempting to search for it in known locations. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} --load-extension=spatialite shortcut option 683812642  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
, [performed_via_github_app] TEXT);
CREATE INDEX [idx_issue_comments_issue]
                ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
                ON [issue_comments] ([user]);
Powered by Datasette · Queries took 16.89ms · About: simonw/datasette-graphql