Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add table github_search_topic. Closes #105 #112

Merged
merged 1 commit into from
Dec 6, 2021
Merged

Conversation

c0d3r-arnab
Copy link
Contributor

Example query results

Results
> select
  name,
  created_at,
  curated
from
  github_search_topic
where
  query = 'target-searching is:not-curated repo:turbot/steampipe-plugin-github';
+------------------+----------------------+---------+
| name             | created_at           | curated |
+------------------+----------------------+---------+
| target-searching | 2018-10-02T04:28:14Z | false   |
+------------------+----------------------+---------+
> select
  name,
  created_at,
  featured
from
  github_search_topic
where
  query = 'markdown is:featured repo:turbot/steampipe-plugin-github';
+----------+----------------------+----------+
| name     | created_at           | featured |
+----------+----------------------+----------+
| markdown | 2016-12-17T03:09:36Z | true     |
+----------+----------------------+----------+
> select
  name,
  created_at,
  created_by,
  featured,
  curated
from
  github_search_topic
where
  query = 'repositories:>5000 react-redux';
+-------------+----------------------+------------------------------+----------+---------+
| name        | created_at           | created_by                   | featured | curated |
+-------------+----------------------+------------------------------+----------+---------+
| redux       | 2016-11-22T16:32:44Z | Dan Abramov and Andrew Clark | true     | true    |
| react-redux | 2017-01-31T22:21:30Z | <null>                       | false    | false   |
+-------------+----------------------+------------------------------+----------+---------+
> select
  name,
  created_at,
  created_by,
  featured,
  curated
from
  github_search_topic
where
  query = 'created:>2021-01-01 react-redux';
+-------------------------------------+----------------------+------------+----------+---------+
| name                                | created_at           | created_by | featured | curated |
+-------------------------------------+----------------------+------------+----------+---------+
| react-redux-filtering               | 2021-04-17T14:35:07Z | <null>     | false    | false   |
| uses-react-js-node-js-mongodb-redux | 2021-07-20T06:02:27Z | <null>     | false    | false   |
| youtube-reactjs-redux               | 2021-03-09T12:01:34Z | <null>     | false    | false   |
| react-redux-airtable                | 2021-01-16T13:21:25Z | <null>     | false    | false   |
| react-redux-toolkit                 | 2021-01-31T22:54:46Z | <null>     | false    | false   |
| react-srr-redux                     | 2021-07-14T09:46:24Z | <null>     | false    | false   |
| reactjs-firebase-axios-and-redux    | 2021-08-01T20:32:56Z | <null>     | false    | false   |
| react-redux-bindings                | 2021-10-18T23:09:49Z | <null>     | false    | false   |
| react-redux-template                | 2021-09-09T20:58:41Z | <null>     | false    | false   |
| react-redux-applications            | 2021-02-14T09:01:00Z | <null>     | false    | false   |
| react-reduxt                        | 2021-04-30T11:58:36Z | <null>     | false    | false   |
| laravel-react-redux                 | 2021-02-13T16:17:54Z | <null>     | false    | false   |
+-------------------------------------+----------------------+------------+----------+---------+

@c0d3r-arnab c0d3r-arnab self-assigned this Nov 24, 2021
@c0d3r-arnab c0d3r-arnab linked an issue Nov 24, 2021 that may be closed by this pull request
Copy link
Contributor

@ParthaI ParthaI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@bigdatasourav bigdatasourav merged commit fd46cea into main Dec 6, 2021
@bigdatasourav bigdatasourav deleted the issue-105 branch December 6, 2021 09:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add table github_search_topic.
3 participants