CricketStudio Knowledge Graph — public sample (RCB squad, IPL matchups)
Browse files- LICENSE +8 -0
- README.md +51 -0
- edges.csv +778 -0
- edges.json +0 -0
- nodes.csv +142 -0
- nodes.json +857 -0
- schema.json +26 -0
LICENSE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Creative Commons Attribution 4.0 International (CC BY 4.0)
|
| 2 |
+
|
| 3 |
+
This dataset is licensed under CC BY 4.0. You are free to share and adapt the
|
| 4 |
+
material for any purpose, even commercially, provided you give appropriate
|
| 5 |
+
credit to "CricketStudio (https://players.cricketstudio.ai)".
|
| 6 |
+
|
| 7 |
+
Summary: https://creativecommons.org/licenses/by/4.0/
|
| 8 |
+
Full text: https://creativecommons.org/licenses/by/4.0/legalcode
|
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- cricket
|
| 7 |
+
- knowledge-graph
|
| 8 |
+
- ipl
|
| 9 |
+
- sports-analytics
|
| 10 |
+
- matchups
|
| 11 |
+
- rag
|
| 12 |
+
pretty_name: CricketStudio Knowledge Graph (Sample)
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: nodes
|
| 17 |
+
data_files: nodes.csv
|
| 18 |
+
- config_name: edges
|
| 19 |
+
data_files: edges.csv
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# CricketStudio Knowledge Graph — Sample
|
| 23 |
+
|
| 24 |
+
A **sample** of the CricketStudio cricket knowledge graph: the **Royal Challengers
|
| 25 |
+
Bengaluru** squad and their batter-vs-bowler matchup relationships, from IPL 2026
|
| 26 |
+
plus IPL-career head-to-head data. Every entity links back to its canonical page
|
| 27 |
+
on https://players.cricketstudio.ai via `canonical_url`.
|
| 28 |
+
|
| 29 |
+
## Files / configs
|
| 30 |
+
| File | Rows | What |
|
| 31 |
+
|---|---|---|
|
| 32 |
+
| `nodes.csv` / `nodes.json` | 141 | entities — `id` (slug), `type`, `name`, `canonical_url` |
|
| 33 |
+
| `edges.csv` / `edges.json` | 777 | relationships — `plays_for`, `faced`, `dismissed_by` (matchup counts) |
|
| 34 |
+
| `schema.json` | — | node types + edge predicates (vocabulary) |
|
| 35 |
+
|
| 36 |
+
## Edge semantics
|
| 37 |
+
- `plays_for` — player → franchise
|
| 38 |
+
- `faced` — batter → bowler, with `{deliveries, runs}` (IPL career)
|
| 39 |
+
- `dismissed_by` — batter → bowler, with `{dismissals}`
|
| 40 |
+
|
| 41 |
+
## Scope & the full graph
|
| 42 |
+
This is a **single-franchise sample** for evaluation. The complete graph — all ten
|
| 43 |
+
franchises, venues, matches, multi-league coverage, and the full matchup edge set —
|
| 44 |
+
is available through the CricketStudio API. Contact **hello@cricketstudio.ai**.
|
| 45 |
+
|
| 46 |
+
## Provenance
|
| 47 |
+
Every number derives from ball-by-ball data and is auditable on the linked page.
|
| 48 |
+
See https://players.cricketstudio.ai/about for methodology.
|
| 49 |
+
|
| 50 |
+
## License
|
| 51 |
+
**CC BY 4.0** — attribute "CricketStudio (https://players.cricketstudio.ai)".
|
edges.csv
ADDED
|
@@ -0,0 +1,778 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
src,predicate,dst,deliveries,runs,dismissals
|
| 2 |
+
abhinandan-singh,plays_for,rcb,,,
|
| 3 |
+
bhuvneshwar-kumar,dismissed_by,arshdeep-singh,,,1
|
| 4 |
+
bhuvneshwar-kumar,dismissed_by,cameron-green,,,1
|
| 5 |
+
bhuvneshwar-kumar,dismissed_by,harshal-patel,,,1
|
| 6 |
+
bhuvneshwar-kumar,dismissed_by,jason-holder,,,1
|
| 7 |
+
bhuvneshwar-kumar,dismissed_by,kagiso-rabada,,,1
|
| 8 |
+
bhuvneshwar-kumar,dismissed_by,navdeep-saini,,,1
|
| 9 |
+
bhuvneshwar-kumar,dismissed_by,yuzvendra-chahal,,,1
|
| 10 |
+
bhuvneshwar-kumar,faced,ad-russell,8,5,0
|
| 11 |
+
bhuvneshwar-kumar,faced,arshdeep-singh,8,8,1
|
| 12 |
+
bhuvneshwar-kumar,faced,cameron-green,12,11,1
|
| 13 |
+
bhuvneshwar-kumar,faced,dj-bravo,19,11,0
|
| 14 |
+
bhuvneshwar-kumar,faced,harshal-patel,8,5,1
|
| 15 |
+
bhuvneshwar-kumar,faced,jason-holder,13,13,1
|
| 16 |
+
bhuvneshwar-kumar,faced,jasprit-bumrah,8,7,0
|
| 17 |
+
bhuvneshwar-kumar,faced,josh-hazlewood,5,6,0
|
| 18 |
+
bhuvneshwar-kumar,faced,kagiso-rabada,6,1,1
|
| 19 |
+
bhuvneshwar-kumar,faced,lungi-ngidi,8,7,0
|
| 20 |
+
bhuvneshwar-kumar,faced,mohammed-siraj,5,6,0
|
| 21 |
+
bhuvneshwar-kumar,faced,navdeep-saini,5,2,1
|
| 22 |
+
bhuvneshwar-kumar,faced,noor-ahmad,8,9,0
|
| 23 |
+
bhuvneshwar-kumar,faced,rashid-khan,8,7,0
|
| 24 |
+
bhuvneshwar-kumar,faced,ravindra-jadeja,8,12,0
|
| 25 |
+
bhuvneshwar-kumar,faced,sunil-narine,10,4,0
|
| 26 |
+
bhuvneshwar-kumar,faced,yash-dayal,6,8,0
|
| 27 |
+
bhuvneshwar-kumar,faced,yuzvendra-chahal,7,4,1
|
| 28 |
+
bhuvneshwar-kumar,plays_for,rcb,,,
|
| 29 |
+
devdutt-padikkal,dismissed_by,anrich-nortje,,,3
|
| 30 |
+
devdutt-padikkal,dismissed_by,arshdeep-singh,,,3
|
| 31 |
+
devdutt-padikkal,dismissed_by,avesh-khan,,,2
|
| 32 |
+
devdutt-padikkal,dismissed_by,axar-patel,,,2
|
| 33 |
+
devdutt-padikkal,dismissed_by,bhuvneshwar-kumar,,,1
|
| 34 |
+
devdutt-padikkal,dismissed_by,deepak-chahar,,,1
|
| 35 |
+
devdutt-padikkal,dismissed_by,eshan-malinga,,,1
|
| 36 |
+
devdutt-padikkal,dismissed_by,hardik-pandya,,,1
|
| 37 |
+
devdutt-padikkal,dismissed_by,harpreet-brar,,,2
|
| 38 |
+
devdutt-padikkal,dismissed_by,harsh-dubey,,,1
|
| 39 |
+
devdutt-padikkal,dismissed_by,harshal-patel,,,1
|
| 40 |
+
devdutt-padikkal,dismissed_by,ishant-sharma,,,1
|
| 41 |
+
devdutt-padikkal,dismissed_by,jamie-overton,,,1
|
| 42 |
+
devdutt-padikkal,dismissed_by,jason-holder,,,2
|
| 43 |
+
devdutt-padikkal,dismissed_by,jasprit-bumrah,,,2
|
| 44 |
+
devdutt-padikkal,dismissed_by,jofra-archer,,,2
|
| 45 |
+
devdutt-padikkal,dismissed_by,josh-hazlewood,,,1
|
| 46 |
+
devdutt-padikkal,dismissed_by,kagiso-rabada,,,1
|
| 47 |
+
devdutt-padikkal,dismissed_by,kartik-tyagi,,,1
|
| 48 |
+
devdutt-padikkal,dismissed_by,khaleel-ahmed,,,2
|
| 49 |
+
devdutt-padikkal,dismissed_by,lockie-ferguson,,,2
|
| 50 |
+
devdutt-padikkal,dismissed_by,matheesha-pathirana,,,2
|
| 51 |
+
devdutt-padikkal,dismissed_by,mc-henriques,,,1
|
| 52 |
+
devdutt-padikkal,dismissed_by,mitchell-santner,,,1
|
| 53 |
+
devdutt-padikkal,dismissed_by,mohammed-siraj,,,3
|
| 54 |
+
devdutt-padikkal,dismissed_by,mustafizur-rahman,,,1
|
| 55 |
+
devdutt-padikkal,dismissed_by,noor-ahmad,,,1
|
| 56 |
+
devdutt-padikkal,dismissed_by,prasidh-krishna,,,1
|
| 57 |
+
devdutt-padikkal,dismissed_by,prince-yadav,,,1
|
| 58 |
+
devdutt-padikkal,dismissed_by,rahul-tewatia,,,1
|
| 59 |
+
devdutt-padikkal,dismissed_by,rashid-khan,,,5
|
| 60 |
+
devdutt-padikkal,dismissed_by,ravi-bishnoi,,,1
|
| 61 |
+
devdutt-padikkal,dismissed_by,ravindra-jadeja,,,1
|
| 62 |
+
devdutt-padikkal,dismissed_by,sandeep-sharma,,,2
|
| 63 |
+
devdutt-padikkal,dismissed_by,shardul-thakur,,,3
|
| 64 |
+
devdutt-padikkal,dismissed_by,sunil-narine,,,2
|
| 65 |
+
devdutt-padikkal,dismissed_by,trent-boult,,,2
|
| 66 |
+
devdutt-padikkal,dismissed_by,umran-malik,,,2
|
| 67 |
+
devdutt-padikkal,faced,abhishek-sharma,5,10,0
|
| 68 |
+
devdutt-padikkal,faced,anrich-nortje,11,17,3
|
| 69 |
+
devdutt-padikkal,faced,arshdeep-singh,40,64,3
|
| 70 |
+
devdutt-padikkal,faced,avesh-khan,10,3,2
|
| 71 |
+
devdutt-padikkal,faced,axar-patel,30,49,2
|
| 72 |
+
devdutt-padikkal,faced,bhuvneshwar-kumar,23,15,1
|
| 73 |
+
devdutt-padikkal,faced,david-payne,5,17,0
|
| 74 |
+
devdutt-padikkal,faced,deepak-chahar,42,72,1
|
| 75 |
+
devdutt-padikkal,faced,digvesh-rathi,10,13,0
|
| 76 |
+
devdutt-padikkal,faced,dj-bravo,12,9,0
|
| 77 |
+
devdutt-padikkal,faced,dr-sams,15,21,0
|
| 78 |
+
devdutt-padikkal,faced,dushmantha-chameera,25,36,0
|
| 79 |
+
devdutt-padikkal,faced,eshan-malinga,7,17,1
|
| 80 |
+
devdutt-padikkal,faced,gj-maxwell,16,13,0
|
| 81 |
+
devdutt-padikkal,faced,hardik-pandya,27,17,1
|
| 82 |
+
devdutt-padikkal,faced,harpreet-brar,24,27,2
|
| 83 |
+
devdutt-padikkal,faced,harsh-dubey,7,17,1
|
| 84 |
+
devdutt-padikkal,faced,harshal-patel,15,18,1
|
| 85 |
+
devdutt-padikkal,faced,ishant-sharma,13,15,1
|
| 86 |
+
devdutt-padikkal,faced,j-little,7,9,0
|
| 87 |
+
devdutt-padikkal,faced,jamie-overton,5,8,1
|
| 88 |
+
devdutt-padikkal,faced,jason-holder,45,52,2
|
| 89 |
+
devdutt-padikkal,faced,jasprit-bumrah,25,17,2
|
| 90 |
+
devdutt-padikkal,faced,jaydev-unadkat,17,31,0
|
| 91 |
+
devdutt-padikkal,faced,jofra-archer,28,32,2
|
| 92 |
+
devdutt-padikkal,faced,josh-hazlewood,16,23,1
|
| 93 |
+
devdutt-padikkal,faced,kagiso-rabada,46,91,1
|
| 94 |
+
devdutt-padikkal,faced,kartik-tyagi,15,23,1
|
| 95 |
+
devdutt-padikkal,faced,khaleel-ahmed,6,1,2
|
| 96 |
+
devdutt-padikkal,faced,krunal-pandya,20,33,0
|
| 97 |
+
devdutt-padikkal,faced,kuldeep-yadav,16,15,0
|
| 98 |
+
devdutt-padikkal,faced,kyle-jamieson,6,21,0
|
| 99 |
+
devdutt-padikkal,faced,lockie-ferguson,17,28,2
|
| 100 |
+
devdutt-padikkal,faced,marco-jansen,5,2,0
|
| 101 |
+
devdutt-padikkal,faced,marcus-stoinis,15,39,0
|
| 102 |
+
devdutt-padikkal,faced,matheesha-pathirana,16,19,2
|
| 103 |
+
devdutt-padikkal,faced,mayank-yadav,5,4,0
|
| 104 |
+
devdutt-padikkal,faced,mc-henriques,5,2,1
|
| 105 |
+
devdutt-padikkal,faced,mitchell-marsh,10,22,0
|
| 106 |
+
devdutt-padikkal,faced,mitchell-santner,7,8,1
|
| 107 |
+
devdutt-padikkal,faced,mohammed-shami,26,27,0
|
| 108 |
+
devdutt-padikkal,faced,mohammed-siraj,35,46,3
|
| 109 |
+
devdutt-padikkal,faced,mustafizur-rahman,31,48,1
|
| 110 |
+
devdutt-padikkal,faced,naveen-ul-haq,7,4,0
|
| 111 |
+
devdutt-padikkal,faced,noor-ahmad,15,15,1
|
| 112 |
+
devdutt-padikkal,faced,pat-cummins,29,37,0
|
| 113 |
+
devdutt-padikkal,faced,prasidh-krishna,24,46,1
|
| 114 |
+
devdutt-padikkal,faced,prince-yadav,10,19,1
|
| 115 |
+
devdutt-padikkal,faced,rahul-chahar,43,61,0
|
| 116 |
+
devdutt-padikkal,faced,rahul-tewatia,28,36,1
|
| 117 |
+
devdutt-padikkal,faced,rashid-khan,44,40,5
|
| 118 |
+
devdutt-padikkal,faced,ravi-bishnoi,26,34,1
|
| 119 |
+
devdutt-padikkal,faced,ravindra-jadeja,33,43,1
|
| 120 |
+
devdutt-padikkal,faced,riyan-parag,16,32,0
|
| 121 |
+
devdutt-padikkal,faced,romario-shepherd,10,18,0
|
| 122 |
+
devdutt-padikkal,faced,sai-kishore,11,24,0
|
| 123 |
+
devdutt-padikkal,faced,sakib-hussain,7,7,0
|
| 124 |
+
devdutt-padikkal,faced,sandeep-sharma,24,26,2
|
| 125 |
+
devdutt-padikkal,faced,shakib-al-hasan,5,8,0
|
| 126 |
+
devdutt-padikkal,faced,shardul-thakur,30,25,3
|
| 127 |
+
devdutt-padikkal,faced,shivam-dube,6,20,0
|
| 128 |
+
devdutt-padikkal,faced,shivam-mavi,10,7,0
|
| 129 |
+
devdutt-padikkal,faced,shreyas-gopal,25,32,0
|
| 130 |
+
devdutt-padikkal,faced,sikandar-raza,7,9,0
|
| 131 |
+
devdutt-padikkal,faced,sunil-narine,22,27,2
|
| 132 |
+
devdutt-padikkal,faced,thangarasu-natarajan,17,34,0
|
| 133 |
+
devdutt-padikkal,faced,trent-boult,24,29,2
|
| 134 |
+
devdutt-padikkal,faced,tushar-deshpande,19,42,0
|
| 135 |
+
devdutt-padikkal,faced,umran-malik,24,16,2
|
| 136 |
+
devdutt-padikkal,faced,vijaykumar-vyshak,9,22,0
|
| 137 |
+
devdutt-padikkal,faced,xavier-bartlett,9,19,0
|
| 138 |
+
devdutt-padikkal,faced,yuzvendra-chahal,10,25,0
|
| 139 |
+
devdutt-padikkal,plays_for,rcb,,,
|
| 140 |
+
jacob-bethell,dismissed_by,kyle-jamieson,,,1
|
| 141 |
+
jacob-bethell,dismissed_by,mohammed-shami,,,1
|
| 142 |
+
jacob-bethell,dismissed_by,mohammed-siraj,,,2
|
| 143 |
+
jacob-bethell,faced,am-ghazanfar,5,4,0
|
| 144 |
+
jacob-bethell,faced,anshul-kamboj,7,8,0
|
| 145 |
+
jacob-bethell,faced,jasprit-bumrah,7,4,0
|
| 146 |
+
jacob-bethell,faced,khaleel-ahmed,10,20,0
|
| 147 |
+
jacob-bethell,faced,kyle-jamieson,10,19,1
|
| 148 |
+
jacob-bethell,faced,mohammed-shami,5,4,1
|
| 149 |
+
jacob-bethell,faced,mohammed-siraj,12,14,2
|
| 150 |
+
jacob-bethell,faced,noor-ahmad,6,14,0
|
| 151 |
+
jacob-bethell,faced,saurabh-dubey,10,15,0
|
| 152 |
+
jacob-bethell,faced,will-jacks,5,4,0
|
| 153 |
+
jacob-bethell,plays_for,rcb,,,
|
| 154 |
+
jacob-duffy,plays_for,rcb,,,
|
| 155 |
+
jitesh-sharma,dismissed_by,akash-madhwal,,,1
|
| 156 |
+
jitesh-sharma,dismissed_by,anrich-nortje,,,1
|
| 157 |
+
jitesh-sharma,dismissed_by,avesh-khan,,,1
|
| 158 |
+
jitesh-sharma,dismissed_by,axar-patel,,,2
|
| 159 |
+
jitesh-sharma,dismissed_by,corbin-bosch,,,1
|
| 160 |
+
jitesh-sharma,dismissed_by,harshal-patel,,,1
|
| 161 |
+
jitesh-sharma,dismissed_by,jaydev-unadkat,,,1
|
| 162 |
+
jitesh-sharma,dismissed_by,khaleel-ahmed,,,1
|
| 163 |
+
jitesh-sharma,dismissed_by,kuldeep-yadav,,,2
|
| 164 |
+
jitesh-sharma,dismissed_by,lungi-ngidi,,,1
|
| 165 |
+
jitesh-sharma,dismissed_by,marco-jansen,,,1
|
| 166 |
+
jitesh-sharma,dismissed_by,mayank-yadav,,,1
|
| 167 |
+
jitesh-sharma,dismissed_by,mohammed-siraj,,,1
|
| 168 |
+
jitesh-sharma,dismissed_by,navdeep-saini,,,1
|
| 169 |
+
jitesh-sharma,dismissed_by,nitish-kumar-reddy,,,1
|
| 170 |
+
jitesh-sharma,dismissed_by,noor-ahmad,,,1
|
| 171 |
+
jitesh-sharma,dismissed_by,rashid-khan,,,2
|
| 172 |
+
jitesh-sharma,dismissed_by,sai-kishore,,,2
|
| 173 |
+
jitesh-sharma,dismissed_by,shardul-thakur,,,1
|
| 174 |
+
jitesh-sharma,dismissed_by,trent-boult,,,1
|
| 175 |
+
jitesh-sharma,dismissed_by,tushar-deshpande,,,1
|
| 176 |
+
jitesh-sharma,dismissed_by,umran-malik,,,1
|
| 177 |
+
jitesh-sharma,dismissed_by,vijaykumar-vyshak,,,1
|
| 178 |
+
jitesh-sharma,dismissed_by,yuzvendra-chahal,,,3
|
| 179 |
+
jitesh-sharma,faced,a-zampa,6,9,0
|
| 180 |
+
jitesh-sharma,faced,akash-madhwal,7,9,1
|
| 181 |
+
jitesh-sharma,faced,anrich-nortje,9,6,1
|
| 182 |
+
jitesh-sharma,faced,arshad-khan,7,4,0
|
| 183 |
+
jitesh-sharma,faced,avesh-khan,17,19,1
|
| 184 |
+
jitesh-sharma,faced,axar-patel,19,15,2
|
| 185 |
+
jitesh-sharma,faced,corbin-bosch,7,6,1
|
| 186 |
+
jitesh-sharma,faced,digvesh-rathi,9,30,0
|
| 187 |
+
jitesh-sharma,faced,hardik-pandya,14,23,0
|
| 188 |
+
jitesh-sharma,faced,harshal-patel,10,9,1
|
| 189 |
+
jitesh-sharma,faced,ishant-sharma,13,27,0
|
| 190 |
+
jitesh-sharma,faced,jasprit-bumrah,21,28,0
|
| 191 |
+
jitesh-sharma,faced,jaydev-unadkat,15,37,1
|
| 192 |
+
jitesh-sharma,faced,jofra-archer,14,23,0
|
| 193 |
+
jitesh-sharma,faced,khaleel-ahmed,8,16,1
|
| 194 |
+
jitesh-sharma,faced,kuldeep-sen,12,24,0
|
| 195 |
+
jitesh-sharma,faced,kuldeep-yadav,31,33,2
|
| 196 |
+
jitesh-sharma,faced,lungi-ngidi,6,7,1
|
| 197 |
+
jitesh-sharma,faced,marco-jansen,13,5,1
|
| 198 |
+
jitesh-sharma,faced,matheesha-pathirana,9,16,0
|
| 199 |
+
jitesh-sharma,faced,mayank-yadav,5,1,1
|
| 200 |
+
jitesh-sharma,faced,mohammed-shami,5,9,0
|
| 201 |
+
jitesh-sharma,faced,mohammed-siraj,13,17,1
|
| 202 |
+
jitesh-sharma,faced,mukesh-choudhary,5,7,0
|
| 203 |
+
jitesh-sharma,faced,mukesh-kumar,5,2,0
|
| 204 |
+
jitesh-sharma,faced,navdeep-saini,7,15,1
|
| 205 |
+
jitesh-sharma,faced,nitish-kumar-reddy,10,27,1
|
| 206 |
+
jitesh-sharma,faced,noor-ahmad,9,12,1
|
| 207 |
+
jitesh-sharma,faced,pat-cummins,6,11,0
|
| 208 |
+
jitesh-sharma,faced,prasidh-krishna,19,23,0
|
| 209 |
+
jitesh-sharma,faced,rashid-khan,31,45,2
|
| 210 |
+
jitesh-sharma,faced,ravi-bishnoi,6,9,0
|
| 211 |
+
jitesh-sharma,faced,ravindra-jadeja,9,18,0
|
| 212 |
+
jitesh-sharma,faced,sai-kishore,8,12,2
|
| 213 |
+
jitesh-sharma,faced,sandeep-sharma,11,26,0
|
| 214 |
+
jitesh-sharma,faced,shahbaz-ahmed,5,17,0
|
| 215 |
+
jitesh-sharma,faced,shardul-thakur,6,8,1
|
| 216 |
+
jitesh-sharma,faced,sunil-narine,9,12,0
|
| 217 |
+
jitesh-sharma,faced,suyash-sharma,9,16,0
|
| 218 |
+
jitesh-sharma,faced,thangarasu-natarajan,10,14,0
|
| 219 |
+
jitesh-sharma,faced,trent-boult,16,36,1
|
| 220 |
+
jitesh-sharma,faced,tushar-deshpande,5,8,1
|
| 221 |
+
jitesh-sharma,faced,umran-malik,5,9,1
|
| 222 |
+
jitesh-sharma,faced,vijaykumar-vyshak,6,11,1
|
| 223 |
+
jitesh-sharma,faced,yuzvendra-chahal,35,41,3
|
| 224 |
+
jitesh-sharma,plays_for,rcb,,,
|
| 225 |
+
josh-hazlewood,faced,thangarasu-natarajan,5,2,0
|
| 226 |
+
josh-hazlewood,faced,umran-malik,5,0,0
|
| 227 |
+
josh-hazlewood,plays_for,rcb,,,
|
| 228 |
+
krunal-pandya,dismissed_by,ad-russell,,,2
|
| 229 |
+
krunal-pandya,dismissed_by,am-ghazanfar,,,1
|
| 230 |
+
krunal-pandya,dismissed_by,arshdeep-singh,,,1
|
| 231 |
+
krunal-pandya,dismissed_by,bhuvneshwar-kumar,,,1
|
| 232 |
+
krunal-pandya,dismissed_by,gj-maxwell,,,3
|
| 233 |
+
krunal-pandya,dismissed_by,harshal-patel,,,1
|
| 234 |
+
krunal-pandya,dismissed_by,jaydev-unadkat,,,1
|
| 235 |
+
krunal-pandya,dismissed_by,jofra-archer,,,2
|
| 236 |
+
krunal-pandya,dismissed_by,kagiso-rabada,,,3
|
| 237 |
+
krunal-pandya,dismissed_by,kuldeep-yadav,,,1
|
| 238 |
+
krunal-pandya,dismissed_by,lockie-ferguson,,,1
|
| 239 |
+
krunal-pandya,dismissed_by,lungi-ngidi,,,1
|
| 240 |
+
krunal-pandya,dismissed_by,marcus-stoinis,,,3
|
| 241 |
+
krunal-pandya,dismissed_by,mohammed-shami,,,3
|
| 242 |
+
krunal-pandya,dismissed_by,mohammed-siraj,,,2
|
| 243 |
+
krunal-pandya,dismissed_by,mukesh-kumar,,,1
|
| 244 |
+
krunal-pandya,dismissed_by,mustafizur-rahman,,,1
|
| 245 |
+
krunal-pandya,dismissed_by,noor-ahmad,,,1
|
| 246 |
+
krunal-pandya,dismissed_by,pat-cummins,,,1
|
| 247 |
+
krunal-pandya,dismissed_by,rashid-khan,,,4
|
| 248 |
+
krunal-pandya,dismissed_by,ravi-bishnoi,,,2
|
| 249 |
+
krunal-pandya,dismissed_by,shakib-al-hasan,,,1
|
| 250 |
+
krunal-pandya,dismissed_by,shardul-thakur,,,2
|
| 251 |
+
krunal-pandya,dismissed_by,sunil-narine,,,3
|
| 252 |
+
krunal-pandya,dismissed_by,thangarasu-natarajan,,,1
|
| 253 |
+
krunal-pandya,dismissed_by,trent-boult,,,1
|
| 254 |
+
krunal-pandya,dismissed_by,umran-malik,,,1
|
| 255 |
+
krunal-pandya,dismissed_by,vipraj-nigam,,,1
|
| 256 |
+
krunal-pandya,dismissed_by,yuzvendra-chahal,,,2
|
| 257 |
+
krunal-pandya,faced,a-zampa,8,6,0
|
| 258 |
+
krunal-pandya,faced,ad-russell,28,39,2
|
| 259 |
+
krunal-pandya,faced,aiden-markram,5,7,0
|
| 260 |
+
krunal-pandya,faced,aj-tye,10,18,0
|
| 261 |
+
krunal-pandya,faced,akash-madhwal,8,5,0
|
| 262 |
+
krunal-pandya,faced,am-ghazanfar,13,28,1
|
| 263 |
+
krunal-pandya,faced,anrich-nortje,11,10,0
|
| 264 |
+
krunal-pandya,faced,arshdeep-singh,11,16,1
|
| 265 |
+
krunal-pandya,faced,avesh-khan,7,5,0
|
| 266 |
+
krunal-pandya,faced,axar-patel,30,35,0
|
| 267 |
+
krunal-pandya,faced,bhuvneshwar-kumar,17,21,1
|
| 268 |
+
krunal-pandya,faced,cameron-green,7,4,0
|
| 269 |
+
krunal-pandya,faced,corbin-bosch,11,18,0
|
| 270 |
+
krunal-pandya,faced,dj-bravo,22,20,0
|
| 271 |
+
krunal-pandya,faced,dushmantha-chameera,9,16,0
|
| 272 |
+
krunal-pandya,faced,gj-maxwell,19,14,3
|
| 273 |
+
krunal-pandya,faced,hardik-pandya,5,6,0
|
| 274 |
+
krunal-pandya,faced,harshal-patel,34,51,1
|
| 275 |
+
krunal-pandya,faced,ishant-sharma,8,17,0
|
| 276 |
+
krunal-pandya,faced,jason-holder,9,13,0
|
| 277 |
+
krunal-pandya,faced,jaydev-unadkat,28,42,1
|
| 278 |
+
krunal-pandya,faced,jofra-archer,14,8,2
|
| 279 |
+
krunal-pandya,faced,kagiso-rabada,30,43,3
|
| 280 |
+
krunal-pandya,faced,kma-paul,7,12,0
|
| 281 |
+
krunal-pandya,faced,kuldeep-yadav,35,36,1
|
| 282 |
+
krunal-pandya,faced,kulwant-khejroliya,6,6,0
|
| 283 |
+
krunal-pandya,faced,lockie-ferguson,13,11,1
|
| 284 |
+
krunal-pandya,faced,lungi-ngidi,12,26,1
|
| 285 |
+
krunal-pandya,faced,manav-suthar,7,16,0
|
| 286 |
+
krunal-pandya,faced,marcus-stoinis,21,51,3
|
| 287 |
+
krunal-pandya,faced,mitchell-santner,5,8,0
|
| 288 |
+
krunal-pandya,faced,mitchell-starc,7,3,0
|
| 289 |
+
krunal-pandya,faced,mohammed-shami,22,37,3
|
| 290 |
+
krunal-pandya,faced,mohammed-siraj,30,31,2
|
| 291 |
+
krunal-pandya,faced,mukesh-kumar,25,43,1
|
| 292 |
+
krunal-pandya,faced,mustafizur-rahman,23,36,1
|
| 293 |
+
krunal-pandya,faced,noor-ahmad,7,4,1
|
| 294 |
+
krunal-pandya,faced,oc-mccoy,6,7,0
|
| 295 |
+
krunal-pandya,faced,pat-cummins,15,13,1
|
| 296 |
+
krunal-pandya,faced,prasidh-krishna,26,41,0
|
| 297 |
+
krunal-pandya,faced,rahul-tewatia,21,28,0
|
| 298 |
+
krunal-pandya,faced,raj-angad-bawa,7,13,0
|
| 299 |
+
krunal-pandya,faced,rashid-khan,41,40,4
|
| 300 |
+
krunal-pandya,faced,ravi-bishnoi,8,3,2
|
| 301 |
+
krunal-pandya,faced,ravindra-jadeja,13,12,0
|
| 302 |
+
krunal-pandya,faced,sakib-hussain,5,7,0
|
| 303 |
+
krunal-pandya,faced,sandeep-sharma,14,19,0
|
| 304 |
+
krunal-pandya,faced,shahbaz-ahmed,18,19,0
|
| 305 |
+
krunal-pandya,faced,shakib-al-hasan,11,15,1
|
| 306 |
+
krunal-pandya,faced,shardul-thakur,25,32,2
|
| 307 |
+
krunal-pandya,faced,shivam-mavi,5,2,0
|
| 308 |
+
krunal-pandya,faced,sikandar-raza,5,7,0
|
| 309 |
+
krunal-pandya,faced,sunil-narine,33,31,3
|
| 310 |
+
krunal-pandya,faced,thangarasu-natarajan,15,17,1
|
| 311 |
+
krunal-pandya,faced,trent-boult,13,14,1
|
| 312 |
+
krunal-pandya,faced,umran-malik,6,9,1
|
| 313 |
+
krunal-pandya,faced,vipraj-nigam,7,6,1
|
| 314 |
+
krunal-pandya,faced,washington-sundar,10,8,0
|
| 315 |
+
krunal-pandya,faced,will-jacks,7,8,0
|
| 316 |
+
krunal-pandya,faced,yuzvendra-chahal,40,54,2
|
| 317 |
+
krunal-pandya,plays_for,rcb,,,
|
| 318 |
+
philip-salt,dismissed_by,arshdeep-singh,,,2
|
| 319 |
+
philip-salt,dismissed_by,avesh-khan,,,1
|
| 320 |
+
philip-salt,dismissed_by,axar-patel,,,1
|
| 321 |
+
philip-salt,dismissed_by,bhuvneshwar-kumar,,,1
|
| 322 |
+
philip-salt,dismissed_by,deepak-chahar,,,2
|
| 323 |
+
philip-salt,dismissed_by,harpreet-brar,,,1
|
| 324 |
+
philip-salt,dismissed_by,jaydev-unadkat,,,1
|
| 325 |
+
philip-salt,dismissed_by,jofra-archer,,,1
|
| 326 |
+
philip-salt,dismissed_by,kuldeep-yadav,,,1
|
| 327 |
+
philip-salt,dismissed_by,kyle-jamieson,,,1
|
| 328 |
+
philip-salt,dismissed_by,mayank-markande,,,2
|
| 329 |
+
philip-salt,dismissed_by,mohammed-shami,,,1
|
| 330 |
+
philip-salt,dismissed_by,mohammed-siraj,,,2
|
| 331 |
+
philip-salt,dismissed_by,naveen-ul-haq,,,1
|
| 332 |
+
philip-salt,dismissed_by,noor-ahmad,,,1
|
| 333 |
+
philip-salt,dismissed_by,nuwan-thushara,,,2
|
| 334 |
+
philip-salt,dismissed_by,pat-cummins,,,1
|
| 335 |
+
philip-salt,dismissed_by,trent-boult,,,1
|
| 336 |
+
philip-salt,dismissed_by,tushar-deshpande,,,1
|
| 337 |
+
philip-salt,faced,akeal-hosein,10,21,0
|
| 338 |
+
philip-salt,faced,anshul-kamboj,7,18,0
|
| 339 |
+
philip-salt,faced,arshdeep-singh,28,37,2
|
| 340 |
+
philip-salt,faced,auqib-nabi,12,26,0
|
| 341 |
+
philip-salt,faced,avesh-khan,7,5,1
|
| 342 |
+
philip-salt,faced,axar-patel,11,15,1
|
| 343 |
+
philip-salt,faced,azmatullah-omarzai,6,10,0
|
| 344 |
+
philip-salt,faced,bhuvneshwar-kumar,14,15,1
|
| 345 |
+
philip-salt,faced,deepak-chahar,9,7,2
|
| 346 |
+
philip-salt,faced,digvesh-rathi,5,7,0
|
| 347 |
+
philip-salt,faced,eshan-malinga,9,19,0
|
| 348 |
+
philip-salt,faced,hardik-pandya,9,16,0
|
| 349 |
+
philip-salt,faced,harpreet-brar,21,35,1
|
| 350 |
+
philip-salt,faced,harsh-dubey,6,15,0
|
| 351 |
+
philip-salt,faced,harshal-patel,13,43,0
|
| 352 |
+
philip-salt,faced,jasprit-bumrah,5,6,0
|
| 353 |
+
philip-salt,faced,jaydev-unadkat,6,8,1
|
| 354 |
+
philip-salt,faced,jofra-archer,16,23,1
|
| 355 |
+
philip-salt,faced,josh-hazlewood,7,12,0
|
| 356 |
+
philip-salt,faced,khaleel-ahmed,40,62,0
|
| 357 |
+
philip-salt,faced,kuldeep-yadav,13,26,1
|
| 358 |
+
philip-salt,faced,kyle-jamieson,9,21,1
|
| 359 |
+
philip-salt,faced,lockie-ferguson,6,28,0
|
| 360 |
+
philip-salt,faced,marco-jansen,13,30,0
|
| 361 |
+
philip-salt,faced,mayank-markande,21,38,2
|
| 362 |
+
philip-salt,faced,mitchell-santner,9,25,0
|
| 363 |
+
philip-salt,faced,mitchell-starc,10,21,0
|
| 364 |
+
philip-salt,faced,mohammed-shami,6,5,1
|
| 365 |
+
philip-salt,faced,mohammed-siraj,28,56,2
|
| 366 |
+
philip-salt,faced,mukesh-kumar,6,4,0
|
| 367 |
+
philip-salt,faced,naveen-ul-haq,6,15,1
|
| 368 |
+
philip-salt,faced,nitish-kumar-reddy,8,15,0
|
| 369 |
+
philip-salt,faced,noor-ahmad,7,10,1
|
| 370 |
+
philip-salt,faced,nuwan-thushara,8,11,2
|
| 371 |
+
philip-salt,faced,pat-cummins,10,5,1
|
| 372 |
+
philip-salt,faced,rahul-chahar,6,9,0
|
| 373 |
+
philip-salt,faced,ravi-bishnoi,9,7,0
|
| 374 |
+
philip-salt,faced,sandeep-sharma,10,14,0
|
| 375 |
+
philip-salt,faced,shahbaz-ahmed,7,14,0
|
| 376 |
+
philip-salt,faced,spencer-johnson,8,8,0
|
| 377 |
+
philip-salt,faced,thangarasu-natarajan,13,15,0
|
| 378 |
+
philip-salt,faced,trent-boult,19,25,1
|
| 379 |
+
philip-salt,faced,tushar-deshpande,14,24,1
|
| 380 |
+
philip-salt,faced,vaibhav-arora,8,20,0
|
| 381 |
+
philip-salt,faced,yash-dayal,12,19,0
|
| 382 |
+
philip-salt,faced,yash-thakur,8,23,0
|
| 383 |
+
philip-salt,plays_for,rcb,,,
|
| 384 |
+
rajat-patidar,dismissed_by,avesh-khan,,,1
|
| 385 |
+
rajat-patidar,dismissed_by,axar-patel,,,1
|
| 386 |
+
rajat-patidar,dismissed_by,g-coetzee,,,1
|
| 387 |
+
rajat-patidar,dismissed_by,harpreet-brar,,,1
|
| 388 |
+
rajat-patidar,dismissed_by,ishant-sharma,,,1
|
| 389 |
+
rajat-patidar,dismissed_by,jaydev-unadkat,,,1
|
| 390 |
+
rajat-patidar,dismissed_by,kuldeep-yadav,,,1
|
| 391 |
+
rajat-patidar,dismissed_by,matheesha-pathirana,,,2
|
| 392 |
+
rajat-patidar,dismissed_by,mayank-markande,,,1
|
| 393 |
+
rajat-patidar,dismissed_by,mayank-yadav,,,1
|
| 394 |
+
rajat-patidar,dismissed_by,mitchell-santner,,,1
|
| 395 |
+
rajat-patidar,dismissed_by,mukesh-kumar,,,1
|
| 396 |
+
rajat-patidar,dismissed_by,prince-yadav,,,1
|
| 397 |
+
rajat-patidar,dismissed_by,rahul-chahar,,,1
|
| 398 |
+
rajat-patidar,dismissed_by,rashid-khan,,,1
|
| 399 |
+
rajat-patidar,dismissed_by,sandeep-sharma,,,2
|
| 400 |
+
rajat-patidar,dismissed_by,shardul-thakur,,,1
|
| 401 |
+
rajat-patidar,dismissed_by,sunil-narine,,,1
|
| 402 |
+
rajat-patidar,dismissed_by,trent-boult,,,2
|
| 403 |
+
rajat-patidar,dismissed_by,yuzvendra-chahal,,,2
|
| 404 |
+
rajat-patidar,faced,abhishek-sharma,7,9,0
|
| 405 |
+
rajat-patidar,faced,akash-madhwal,5,10,0
|
| 406 |
+
rajat-patidar,faced,arshdeep-singh,9,18,0
|
| 407 |
+
rajat-patidar,faced,avesh-khan,21,37,1
|
| 408 |
+
rajat-patidar,faced,axar-patel,19,31,1
|
| 409 |
+
rajat-patidar,faced,bhuvneshwar-kumar,8,9,0
|
| 410 |
+
rajat-patidar,faced,brijesh-sharma,7,9,0
|
| 411 |
+
rajat-patidar,faced,deepak-chahar,5,6,0
|
| 412 |
+
rajat-patidar,faced,digvesh-rathi,10,30,0
|
| 413 |
+
rajat-patidar,faced,dushmantha-chameera,11,26,0
|
| 414 |
+
rajat-patidar,faced,eshan-malinga,17,31,0
|
| 415 |
+
rajat-patidar,faced,g-coetzee,5,13,1
|
| 416 |
+
rajat-patidar,faced,hardik-pandya,17,45,0
|
| 417 |
+
rajat-patidar,faced,harpreet-brar,18,21,1
|
| 418 |
+
rajat-patidar,faced,harshal-patel,30,52,0
|
| 419 |
+
rajat-patidar,faced,ishant-sharma,7,14,1
|
| 420 |
+
rajat-patidar,faced,jason-holder,9,16,0
|
| 421 |
+
rajat-patidar,faced,jasprit-bumrah,13,10,0
|
| 422 |
+
rajat-patidar,faced,jaydev-unadkat,7,10,1
|
| 423 |
+
rajat-patidar,faced,kagiso-rabada,31,31,0
|
| 424 |
+
rajat-patidar,faced,kartik-tyagi,8,9,0
|
| 425 |
+
rajat-patidar,faced,khaleel-ahmed,13,29,0
|
| 426 |
+
rajat-patidar,faced,krunal-pandya,17,33,0
|
| 427 |
+
rajat-patidar,faced,kuldeep-yadav,13,16,1
|
| 428 |
+
rajat-patidar,faced,kulwant-khejroliya,6,17,0
|
| 429 |
+
rajat-patidar,faced,lockie-ferguson,6,12,0
|
| 430 |
+
rajat-patidar,faced,marco-jansen,5,5,0
|
| 431 |
+
rajat-patidar,faced,matheesha-pathirana,14,17,2
|
| 432 |
+
rajat-patidar,faced,mayank-markande,19,62,1
|
| 433 |
+
rajat-patidar,faced,mayank-yadav,19,33,1
|
| 434 |
+
rajat-patidar,faced,mitchell-santner,19,25,1
|
| 435 |
+
rajat-patidar,faced,mohammed-shami,19,26,0
|
| 436 |
+
rajat-patidar,faced,mohammed-siraj,11,21,0
|
| 437 |
+
rajat-patidar,faced,mukesh-kumar,17,27,1
|
| 438 |
+
rajat-patidar,faced,musheer-khan,5,13,0
|
| 439 |
+
rajat-patidar,faced,nandre-burger,7,15,0
|
| 440 |
+
rajat-patidar,faced,nitish-kumar-reddy,8,9,0
|
| 441 |
+
rajat-patidar,faced,noor-ahmad,23,28,0
|
| 442 |
+
rajat-patidar,faced,oc-mccoy,7,10,0
|
| 443 |
+
rajat-patidar,faced,pat-cummins,10,13,0
|
| 444 |
+
rajat-patidar,faced,prasidh-krishna,31,44,0
|
| 445 |
+
rajat-patidar,faced,prince-yadav,6,10,1
|
| 446 |
+
rajat-patidar,faced,rahul-chahar,14,34,1
|
| 447 |
+
rajat-patidar,faced,rashid-khan,17,34,1
|
| 448 |
+
rajat-patidar,faced,ravi-bishnoi,30,63,0
|
| 449 |
+
rajat-patidar,faced,ravindra-jadeja,19,30,0
|
| 450 |
+
rajat-patidar,faced,sandeep-sharma,12,12,2
|
| 451 |
+
rajat-patidar,faced,shardul-thakur,8,20,1
|
| 452 |
+
rajat-patidar,faced,shreyas-gopal,6,9,0
|
| 453 |
+
rajat-patidar,faced,sunil-narine,17,33,1
|
| 454 |
+
rajat-patidar,faced,suyash-sharma,9,30,0
|
| 455 |
+
rajat-patidar,faced,trent-boult,18,26,2
|
| 456 |
+
rajat-patidar,faced,tushar-deshpande,5,13,0
|
| 457 |
+
rajat-patidar,faced,xavier-bartlett,8,11,0
|
| 458 |
+
rajat-patidar,faced,yash-thakur,5,10,0
|
| 459 |
+
rajat-patidar,faced,yuzvendra-chahal,32,51,2
|
| 460 |
+
rajat-patidar,plays_for,rcb,,,
|
| 461 |
+
rasikh-salam-dar,plays_for,rcb,,,
|
| 462 |
+
romario-shepherd,dismissed_by,arshdeep-singh,,,1
|
| 463 |
+
romario-shepherd,dismissed_by,matheesha-pathirana,,,1
|
| 464 |
+
romario-shepherd,dismissed_by,yuzvendra-chahal,,,1
|
| 465 |
+
romario-shepherd,faced,anrich-nortje,7,33,0
|
| 466 |
+
romario-shepherd,faced,arshdeep-singh,7,7,1
|
| 467 |
+
romario-shepherd,faced,avesh-khan,7,8,0
|
| 468 |
+
romario-shepherd,faced,digvesh-rathi,6,8,0
|
| 469 |
+
romario-shepherd,faced,jasprit-bumrah,5,1,0
|
| 470 |
+
romario-shepherd,faced,khaleel-ahmed,6,26,0
|
| 471 |
+
romario-shepherd,faced,matheesha-pathirana,8,21,1
|
| 472 |
+
romario-shepherd,faced,mayank-markande,5,14,0
|
| 473 |
+
romario-shepherd,faced,prince-yadav,5,8,0
|
| 474 |
+
romario-shepherd,faced,rashid-khan,8,15,0
|
| 475 |
+
romario-shepherd,faced,yuzvendra-chahal,6,4,1
|
| 476 |
+
romario-shepherd,plays_for,rcb,,,
|
| 477 |
+
suyash-sharma,plays_for,rcb,,,
|
| 478 |
+
tim-david,dismissed_by,ad-russell,,,1
|
| 479 |
+
tim-david,dismissed_by,arshad-khan,,,1
|
| 480 |
+
tim-david,dismissed_by,arshdeep-singh,,,1
|
| 481 |
+
tim-david,dismissed_by,axar-patel,,,1
|
| 482 |
+
tim-david,dismissed_by,brijesh-sharma,,,1
|
| 483 |
+
tim-david,dismissed_by,harshal-patel,,,1
|
| 484 |
+
tim-david,dismissed_by,khaleel-ahmed,,,1
|
| 485 |
+
tim-david,dismissed_by,mitchell-starc,,,1
|
| 486 |
+
tim-david,dismissed_by,mukesh-kumar,,,1
|
| 487 |
+
tim-david,dismissed_by,mustafizur-rahman,,,1
|
| 488 |
+
tim-david,dismissed_by,noor-ahmad,,,1
|
| 489 |
+
tim-david,dismissed_by,prasidh-krishna,,,2
|
| 490 |
+
tim-david,dismissed_by,rashid-khan,,,3
|
| 491 |
+
tim-david,dismissed_by,sandeep-sharma,,,1
|
| 492 |
+
tim-david,dismissed_by,shahbaz-ahmed,,,1
|
| 493 |
+
tim-david,dismissed_by,shardul-thakur,,,1
|
| 494 |
+
tim-david,dismissed_by,tushar-deshpande,,,2
|
| 495 |
+
tim-david,dismissed_by,yash-thakur,,,1
|
| 496 |
+
tim-david,dismissed_by,yuzvendra-chahal,,,1
|
| 497 |
+
tim-david,faced,ad-russell,12,19,1
|
| 498 |
+
tim-david,faced,anrich-nortje,12,16,0
|
| 499 |
+
tim-david,faced,anshul-kamboj,8,18,0
|
| 500 |
+
tim-david,faced,arshad-khan,5,6,1
|
| 501 |
+
tim-david,faced,arshdeep-singh,19,44,1
|
| 502 |
+
tim-david,faced,avesh-khan,13,10,0
|
| 503 |
+
tim-david,faced,axar-patel,13,25,1
|
| 504 |
+
tim-david,faced,bhuvneshwar-kumar,16,32,0
|
| 505 |
+
tim-david,faced,brijesh-sharma,5,8,1
|
| 506 |
+
tim-david,faced,d-pretorius,6,4,0
|
| 507 |
+
tim-david,faced,david-payne,7,13,0
|
| 508 |
+
tim-david,faced,digvesh-rathi,8,18,0
|
| 509 |
+
tim-david,faced,harpreet-brar,6,14,0
|
| 510 |
+
tim-david,faced,harshal-patel,6,2,1
|
| 511 |
+
tim-david,faced,ishant-sharma,5,13,0
|
| 512 |
+
tim-david,faced,jamie-overton,10,31,0
|
| 513 |
+
tim-david,faced,jason-holder,13,38,0
|
| 514 |
+
tim-david,faced,jasprit-bumrah,8,14,0
|
| 515 |
+
tim-david,faced,jaydev-unadkat,12,18,0
|
| 516 |
+
tim-david,faced,jofra-archer,11,11,0
|
| 517 |
+
tim-david,faced,kagiso-rabada,7,9,0
|
| 518 |
+
tim-david,faced,khaleel-ahmed,17,36,1
|
| 519 |
+
tim-david,faced,kuldeep-yadav,9,9,0
|
| 520 |
+
tim-david,faced,lungi-ngidi,5,11,0
|
| 521 |
+
tim-david,faced,mayank-yadav,6,17,0
|
| 522 |
+
tim-david,faced,mitchell-santner,7,6,0
|
| 523 |
+
tim-david,faced,mitchell-starc,5,8,1
|
| 524 |
+
tim-david,faced,mohammed-shami,12,26,0
|
| 525 |
+
tim-david,faced,mukesh-kumar,17,49,1
|
| 526 |
+
tim-david,faced,mustafizur-rahman,6,19,1
|
| 527 |
+
tim-david,faced,naveen-ul-haq,13,20,0
|
| 528 |
+
tim-david,faced,noor-ahmad,8,20,1
|
| 529 |
+
tim-david,faced,pat-cummins,8,8,0
|
| 530 |
+
tim-david,faced,prasidh-krishna,11,20,2
|
| 531 |
+
tim-david,faced,rashid-khan,27,32,3
|
| 532 |
+
tim-david,faced,ravi-bishnoi,9,8,0
|
| 533 |
+
tim-david,faced,sai-kishore,5,8,0
|
| 534 |
+
tim-david,faced,sakib-hussain,5,13,0
|
| 535 |
+
tim-david,faced,sandeep-sharma,10,20,1
|
| 536 |
+
tim-david,faced,shahbaz-ahmed,7,16,1
|
| 537 |
+
tim-david,faced,shardul-thakur,12,33,1
|
| 538 |
+
tim-david,faced,sunil-narine,8,4,0
|
| 539 |
+
tim-david,faced,thangarasu-natarajan,16,47,0
|
| 540 |
+
tim-david,faced,trent-boult,11,22,0
|
| 541 |
+
tim-david,faced,tushar-deshpande,9,19,2
|
| 542 |
+
tim-david,faced,xavier-bartlett,6,11,0
|
| 543 |
+
tim-david,faced,yash-thakur,8,13,1
|
| 544 |
+
tim-david,faced,yuzvendra-chahal,10,12,1
|
| 545 |
+
tim-david,plays_for,rcb,,,
|
| 546 |
+
venkatesh-iyer,dismissed_by,anrich-nortje,,,1
|
| 547 |
+
venkatesh-iyer,dismissed_by,arshdeep-singh,,,1
|
| 548 |
+
venkatesh-iyer,dismissed_by,axar-patel,,,2
|
| 549 |
+
venkatesh-iyer,dismissed_by,cameron-green,,,1
|
| 550 |
+
venkatesh-iyer,dismissed_by,deepak-chahar,,,2
|
| 551 |
+
venkatesh-iyer,dismissed_by,dj-bravo,,,1
|
| 552 |
+
venkatesh-iyer,dismissed_by,eshan-malinga,,,1
|
| 553 |
+
venkatesh-iyer,dismissed_by,gj-maxwell,,,1
|
| 554 |
+
venkatesh-iyer,dismissed_by,harshal-patel,,,2
|
| 555 |
+
venkatesh-iyer,dismissed_by,j-little,,,1
|
| 556 |
+
venkatesh-iyer,dismissed_by,jason-holder,,,1
|
| 557 |
+
venkatesh-iyer,dismissed_by,jasprit-bumrah,,,2
|
| 558 |
+
venkatesh-iyer,dismissed_by,kagiso-rabada,,,2
|
| 559 |
+
venkatesh-iyer,dismissed_by,krunal-pandya,,,1
|
| 560 |
+
venkatesh-iyer,dismissed_by,marco-jansen,,,3
|
| 561 |
+
venkatesh-iyer,dismissed_by,mohammed-siraj,,,1
|
| 562 |
+
venkatesh-iyer,dismissed_by,rahul-chahar,,,1
|
| 563 |
+
venkatesh-iyer,dismissed_by,rashid-khan,,,1
|
| 564 |
+
venkatesh-iyer,dismissed_by,ravi-bishnoi,,,1
|
| 565 |
+
venkatesh-iyer,dismissed_by,ravindra-jadeja,,,1
|
| 566 |
+
venkatesh-iyer,dismissed_by,sai-kishore,,,1
|
| 567 |
+
venkatesh-iyer,dismissed_by,shardul-thakur,,,2
|
| 568 |
+
venkatesh-iyer,dismissed_by,thangarasu-natarajan,,,2
|
| 569 |
+
venkatesh-iyer,dismissed_by,yash-dayal,,,1
|
| 570 |
+
venkatesh-iyer,dismissed_by,yuzvendra-chahal,,,2
|
| 571 |
+
venkatesh-iyer,faced,adam-milne,12,19,0
|
| 572 |
+
venkatesh-iyer,faced,aiden-markram,5,4,0
|
| 573 |
+
venkatesh-iyer,faced,anrich-nortje,14,14,1
|
| 574 |
+
venkatesh-iyer,faced,anshul-kamboj,8,14,0
|
| 575 |
+
venkatesh-iyer,faced,arjun-tendulkar,6,12,0
|
| 576 |
+
venkatesh-iyer,faced,arshdeep-singh,18,24,1
|
| 577 |
+
venkatesh-iyer,faced,avesh-khan,14,20,0
|
| 578 |
+
venkatesh-iyer,faced,axar-patel,23,26,2
|
| 579 |
+
venkatesh-iyer,faced,azmatullah-omarzai,8,11,0
|
| 580 |
+
venkatesh-iyer,faced,bhuvneshwar-kumar,36,49,0
|
| 581 |
+
venkatesh-iyer,faced,cameron-green,11,21,1
|
| 582 |
+
venkatesh-iyer,faced,deepak-chahar,19,25,2
|
| 583 |
+
venkatesh-iyer,faced,digvesh-rathi,9,17,0
|
| 584 |
+
venkatesh-iyer,faced,dj-bravo,10,5,1
|
| 585 |
+
venkatesh-iyer,faced,dr-sams,15,21,0
|
| 586 |
+
venkatesh-iyer,faced,eshan-malinga,6,4,1
|
| 587 |
+
venkatesh-iyer,faced,fa-allen,15,26,0
|
| 588 |
+
venkatesh-iyer,faced,g-coetzee,9,21,0
|
| 589 |
+
venkatesh-iyer,faced,gj-maxwell,8,6,1
|
| 590 |
+
venkatesh-iyer,faced,hardik-pandya,13,21,0
|
| 591 |
+
venkatesh-iyer,faced,harpreet-brar,18,27,0
|
| 592 |
+
venkatesh-iyer,faced,harshal-patel,28,30,2
|
| 593 |
+
venkatesh-iyer,faced,j-little,10,19,1
|
| 594 |
+
venkatesh-iyer,faced,jason-holder,10,5,1
|
| 595 |
+
venkatesh-iyer,faced,jasprit-bumrah,27,33,2
|
| 596 |
+
venkatesh-iyer,faced,jaydev-unadkat,18,25,0
|
| 597 |
+
venkatesh-iyer,faced,josh-hazlewood,13,22,0
|
| 598 |
+
venkatesh-iyer,faced,kagiso-rabada,24,45,2
|
| 599 |
+
venkatesh-iyer,faced,krunal-pandya,14,12,1
|
| 600 |
+
venkatesh-iyer,faced,kuldeep-yadav,11,10,0
|
| 601 |
+
venkatesh-iyer,faced,lockie-ferguson,11,25,0
|
| 602 |
+
venkatesh-iyer,faced,marco-jansen,18,14,3
|
| 603 |
+
venkatesh-iyer,faced,mohammed-shami,19,27,0
|
| 604 |
+
venkatesh-iyer,faced,mohammed-siraj,51,65,1
|
| 605 |
+
venkatesh-iyer,faced,mustafizur-rahman,7,3,0
|
| 606 |
+
venkatesh-iyer,faced,naman-dhir,8,11,0
|
| 607 |
+
venkatesh-iyer,faced,noor-ahmad,5,2,0
|
| 608 |
+
venkatesh-iyer,faced,nuwan-thushara,11,17,0
|
| 609 |
+
venkatesh-iyer,faced,pat-cummins,20,50,0
|
| 610 |
+
venkatesh-iyer,faced,rahul-chahar,25,26,1
|
| 611 |
+
venkatesh-iyer,faced,rashid-khan,31,33,1
|
| 612 |
+
venkatesh-iyer,faced,ravi-bishnoi,28,33,1
|
| 613 |
+
venkatesh-iyer,faced,ravindra-jadeja,7,15,1
|
| 614 |
+
venkatesh-iyer,faced,sai-kishore,5,5,1
|
| 615 |
+
venkatesh-iyer,faced,sandeep-sharma,10,24,0
|
| 616 |
+
venkatesh-iyer,faced,shahbaz-ahmed,5,4,0
|
| 617 |
+
venkatesh-iyer,faced,shardul-thakur,13,26,2
|
| 618 |
+
venkatesh-iyer,faced,shivang-kumar,6,22,0
|
| 619 |
+
venkatesh-iyer,faced,sikandar-raza,9,14,0
|
| 620 |
+
venkatesh-iyer,faced,thangarasu-natarajan,13,29,2
|
| 621 |
+
venkatesh-iyer,faced,trent-boult,21,19,0
|
| 622 |
+
venkatesh-iyer,faced,tushar-deshpande,7,12,0
|
| 623 |
+
venkatesh-iyer,faced,vijaykumar-vyshak,14,13,0
|
| 624 |
+
venkatesh-iyer,faced,washington-sundar,5,5,0
|
| 625 |
+
venkatesh-iyer,faced,yash-dayal,16,39,1
|
| 626 |
+
venkatesh-iyer,faced,yuzvendra-chahal,28,57,2
|
| 627 |
+
venkatesh-iyer,plays_for,rcb,,,
|
| 628 |
+
virat-kohli,dismissed_by,ad-russell,,,2
|
| 629 |
+
virat-kohli,dismissed_by,adam-milne,,,1
|
| 630 |
+
virat-kohli,dismissed_by,anrich-nortje,,,1
|
| 631 |
+
virat-kohli,dismissed_by,anshul-kamboj,,,1
|
| 632 |
+
virat-kohli,dismissed_by,arshdeep-singh,,,2
|
| 633 |
+
virat-kohli,dismissed_by,avesh-khan,,,4
|
| 634 |
+
virat-kohli,dismissed_by,axar-patel,,,1
|
| 635 |
+
virat-kohli,dismissed_by,azmatullah-omarzai,,,1
|
| 636 |
+
virat-kohli,dismissed_by,bhuvneshwar-kumar,,,4
|
| 637 |
+
virat-kohli,dismissed_by,deepak-chahar,,,2
|
| 638 |
+
virat-kohli,dismissed_by,dj-bravo,,,1
|
| 639 |
+
virat-kohli,dismissed_by,dushmantha-chameera,,,2
|
| 640 |
+
virat-kohli,dismissed_by,hardik-pandya,,,3
|
| 641 |
+
virat-kohli,dismissed_by,harpreet-brar,,,2
|
| 642 |
+
virat-kohli,dismissed_by,harsh-dubey,,,1
|
| 643 |
+
virat-kohli,dismissed_by,harshal-patel,,,2
|
| 644 |
+
virat-kohli,dismissed_by,ishant-sharma,,,1
|
| 645 |
+
virat-kohli,dismissed_by,jason-holder,,,4
|
| 646 |
+
virat-kohli,dismissed_by,jasprit-bumrah,,,5
|
| 647 |
+
virat-kohli,dismissed_by,jaydev-unadkat,,,1
|
| 648 |
+
virat-kohli,dismissed_by,jofra-archer,,,1
|
| 649 |
+
virat-kohli,dismissed_by,ka-pollard,,,3
|
| 650 |
+
virat-kohli,dismissed_by,kagiso-rabada,,,4
|
| 651 |
+
virat-kohli,dismissed_by,kartik-tyagi,,,1
|
| 652 |
+
virat-kohli,dismissed_by,khaleel-ahmed,,,1
|
| 653 |
+
virat-kohli,dismissed_by,krunal-pandya,,,1
|
| 654 |
+
virat-kohli,dismissed_by,kuldeep-yadav,,,1
|
| 655 |
+
virat-kohli,dismissed_by,kyle-jamieson,,,1
|
| 656 |
+
virat-kohli,dismissed_by,manimaran-siddharth,,,1
|
| 657 |
+
virat-kohli,dismissed_by,marco-jansen,,,1
|
| 658 |
+
virat-kohli,dismissed_by,mayank-markande,,,1
|
| 659 |
+
virat-kohli,dismissed_by,mc-henriques,,,1
|
| 660 |
+
virat-kohli,dismissed_by,mitchell-santner,,,1
|
| 661 |
+
virat-kohli,dismissed_by,mohammed-shami,,,5
|
| 662 |
+
virat-kohli,dismissed_by,mukesh-choudhary,,,1
|
| 663 |
+
virat-kohli,dismissed_by,mukesh-kumar,,,1
|
| 664 |
+
virat-kohli,dismissed_by,mustafizur-rahman,,,2
|
| 665 |
+
virat-kohli,dismissed_by,nitish-rana,,,1
|
| 666 |
+
virat-kohli,dismissed_by,noor-ahmad,,,2
|
| 667 |
+
virat-kohli,dismissed_by,prasidh-krishna,,,3
|
| 668 |
+
virat-kohli,dismissed_by,prince-yadav,,,1
|
| 669 |
+
virat-kohli,dismissed_by,rahul-chahar,,,1
|
| 670 |
+
virat-kohli,dismissed_by,rashid-khan,,,2
|
| 671 |
+
virat-kohli,dismissed_by,ravi-bishnoi,,,2
|
| 672 |
+
virat-kohli,dismissed_by,ravindra-jadeja,,,3
|
| 673 |
+
virat-kohli,dismissed_by,sandeep-sharma,,,7
|
| 674 |
+
virat-kohli,dismissed_by,shakib-al-hasan,,,1
|
| 675 |
+
virat-kohli,dismissed_by,shardul-thakur,,,1
|
| 676 |
+
virat-kohli,dismissed_by,shreyas-gopal,,,3
|
| 677 |
+
virat-kohli,dismissed_by,sunil-narine,,,4
|
| 678 |
+
virat-kohli,dismissed_by,thangarasu-natarajan,,,1
|
| 679 |
+
virat-kohli,dismissed_by,trent-boult,,,1
|
| 680 |
+
virat-kohli,dismissed_by,vipraj-nigam,,,1
|
| 681 |
+
virat-kohli,dismissed_by,yuzvendra-chahal,,,2
|
| 682 |
+
virat-kohli,faced,a-zampa,16,33,0
|
| 683 |
+
virat-kohli,faced,abhishek-sharma,19,28,0
|
| 684 |
+
virat-kohli,faced,ad-russell,65,88,2
|
| 685 |
+
virat-kohli,faced,adam-milne,9,15,1
|
| 686 |
+
virat-kohli,faced,aj-tye,36,43,0
|
| 687 |
+
virat-kohli,faced,anrich-nortje,17,18,1
|
| 688 |
+
virat-kohli,faced,anshul-kamboj,14,21,1
|
| 689 |
+
virat-kohli,faced,anukul-roy,13,22,0
|
| 690 |
+
virat-kohli,faced,arshad-khan,14,23,0
|
| 691 |
+
virat-kohli,faced,arshdeep-singh,65,109,2
|
| 692 |
+
virat-kohli,faced,auqib-nabi,6,9,0
|
| 693 |
+
virat-kohli,faced,avesh-khan,51,81,4
|
| 694 |
+
virat-kohli,faced,axar-patel,90,100,1
|
| 695 |
+
virat-kohli,faced,azmatullah-omarzai,23,27,1
|
| 696 |
+
virat-kohli,faced,bhuvneshwar-kumar,91,129,4
|
| 697 |
+
virat-kohli,faced,cameron-green,10,16,0
|
| 698 |
+
virat-kohli,faced,cj-anderson,12,16,0
|
| 699 |
+
virat-kohli,faced,deepak-chahar,59,80,2
|
| 700 |
+
virat-kohli,faced,digvesh-rathi,13,17,0
|
| 701 |
+
virat-kohli,faced,dj-bravo,103,157,1
|
| 702 |
+
virat-kohli,faced,dushmantha-chameera,20,18,2
|
| 703 |
+
virat-kohli,faced,eshan-malinga,10,20,0
|
| 704 |
+
virat-kohli,faced,gj-maxwell,11,14,0
|
| 705 |
+
virat-kohli,faced,hardik-pandya,54,60,3
|
| 706 |
+
virat-kohli,faced,harpreet-brar,72,79,2
|
| 707 |
+
virat-kohli,faced,harsh-dubey,11,11,1
|
| 708 |
+
virat-kohli,faced,harshal-patel,56,107,2
|
| 709 |
+
virat-kohli,faced,ishant-sharma,75,112,1
|
| 710 |
+
virat-kohli,faced,jason-holder,33,48,4
|
| 711 |
+
virat-kohli,faced,jasprit-bumrah,110,164,5
|
| 712 |
+
virat-kohli,faced,jayant-yadav,7,8,0
|
| 713 |
+
virat-kohli,faced,jaydev-unadkat,76,92,1
|
| 714 |
+
virat-kohli,faced,jofra-archer,46,64,1
|
| 715 |
+
virat-kohli,faced,josh-hazlewood,11,11,0
|
| 716 |
+
virat-kohli,faced,ka-pollard,31,44,3
|
| 717 |
+
virat-kohli,faced,kagiso-rabada,69,124,4
|
| 718 |
+
virat-kohli,faced,kartik-tyagi,22,37,1
|
| 719 |
+
virat-kohli,faced,khaleel-ahmed,32,51,1
|
| 720 |
+
virat-kohli,faced,krunal-pandya,107,117,1
|
| 721 |
+
virat-kohli,faced,kuldeep-yadav,64,75,1
|
| 722 |
+
virat-kohli,faced,kyle-jamieson,12,14,1
|
| 723 |
+
virat-kohli,faced,liam-livingstone,14,23,0
|
| 724 |
+
virat-kohli,faced,lockie-ferguson,45,72,0
|
| 725 |
+
virat-kohli,faced,manav-suthar,7,14,0
|
| 726 |
+
virat-kohli,faced,manimaran-siddharth,8,7,1
|
| 727 |
+
virat-kohli,faced,marco-jansen,19,26,1
|
| 728 |
+
virat-kohli,faced,marcus-stoinis,13,18,0
|
| 729 |
+
virat-kohli,faced,matheesha-pathirana,9,15,0
|
| 730 |
+
virat-kohli,faced,matt-henry,8,19,0
|
| 731 |
+
virat-kohli,faced,mayank-markande,35,38,1
|
| 732 |
+
virat-kohli,faced,mc-henriques,25,37,1
|
| 733 |
+
virat-kohli,faced,mitchell-marsh,21,28,0
|
| 734 |
+
virat-kohli,faced,mitchell-santner,43,52,1
|
| 735 |
+
virat-kohli,faced,mitchell-starc,31,59,0
|
| 736 |
+
virat-kohli,faced,mohammed-shami,85,119,5
|
| 737 |
+
virat-kohli,faced,mohammed-siraj,23,37,0
|
| 738 |
+
virat-kohli,faced,mukesh-choudhary,9,5,1
|
| 739 |
+
virat-kohli,faced,mukesh-kumar,16,18,1
|
| 740 |
+
virat-kohli,faced,mustafizur-rahman,47,66,2
|
| 741 |
+
virat-kohli,faced,nandre-burger,19,24,0
|
| 742 |
+
virat-kohli,faced,naveen-ul-haq,6,12,0
|
| 743 |
+
virat-kohli,faced,nitish-kumar-reddy,10,16,0
|
| 744 |
+
virat-kohli,faced,nitish-rana,10,16,1
|
| 745 |
+
virat-kohli,faced,noor-ahmad,44,63,2
|
| 746 |
+
virat-kohli,faced,pat-cummins,37,58,0
|
| 747 |
+
virat-kohli,faced,prasidh-krishna,42,70,3
|
| 748 |
+
virat-kohli,faced,prince-yadav,9,17,1
|
| 749 |
+
virat-kohli,faced,rahul-chahar,42,42,1
|
| 750 |
+
virat-kohli,faced,rahul-tewatia,34,40,0
|
| 751 |
+
virat-kohli,faced,rashid-khan,90,117,2
|
| 752 |
+
virat-kohli,faced,ravi-bishnoi,44,37,2
|
| 753 |
+
virat-kohli,faced,ravindra-jadeja,160,179,3
|
| 754 |
+
virat-kohli,faced,riyan-parag,23,39,0
|
| 755 |
+
virat-kohli,faced,sai-kishore,24,27,0
|
| 756 |
+
virat-kohli,faced,sandeep-sharma,90,140,7
|
| 757 |
+
virat-kohli,faced,shahbaz-ahmed,18,14,0
|
| 758 |
+
virat-kohli,faced,shakib-al-hasan,45,56,1
|
| 759 |
+
virat-kohli,faced,shardul-thakur,50,81,1
|
| 760 |
+
virat-kohli,faced,shashank-singh,6,12,0
|
| 761 |
+
virat-kohli,faced,shivam-mavi,14,21,0
|
| 762 |
+
virat-kohli,faced,shreyas-gopal,39,68,3
|
| 763 |
+
virat-kohli,faced,sunil-narine,141,149,4
|
| 764 |
+
virat-kohli,faced,suyash-sharma,10,20,0
|
| 765 |
+
virat-kohli,faced,thangarasu-natarajan,35,66,1
|
| 766 |
+
virat-kohli,faced,trent-boult,73,97,1
|
| 767 |
+
virat-kohli,faced,tushar-deshpande,16,32,0
|
| 768 |
+
virat-kohli,faced,vaibhav-arora,24,54,0
|
| 769 |
+
virat-kohli,faced,vijaykumar-vyshak,7,6,0
|
| 770 |
+
virat-kohli,faced,vipraj-nigam,11,13,1
|
| 771 |
+
virat-kohli,faced,washington-sundar,5,3,0
|
| 772 |
+
virat-kohli,faced,wd-parnell,8,7,0
|
| 773 |
+
virat-kohli,faced,will-jacks,5,9,0
|
| 774 |
+
virat-kohli,faced,xavier-bartlett,9,9,0
|
| 775 |
+
virat-kohli,faced,yash-dayal,26,48,0
|
| 776 |
+
virat-kohli,faced,yash-thakur,5,5,0
|
| 777 |
+
virat-kohli,faced,yuzvendra-chahal,53,71,2
|
| 778 |
+
virat-kohli,plays_for,rcb,,,
|
edges.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
nodes.csv
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,type,name,canonical_url
|
| 2 |
+
rcb,franchise,Royal Challengers Bengaluru,https://players.cricketstudio.ai/teams/rcb
|
| 3 |
+
xavier-bartlett,player,Xavier Bartlett,https://players.cricketstudio.ai/players/xavier-bartlett
|
| 4 |
+
rahul-chahar,player,Rahul Chahar,https://players.cricketstudio.ai/players/rahul-chahar
|
| 5 |
+
abhishek-sharma,player,Abhishek Sharma,https://players.cricketstudio.ai/players/abhishek-sharma
|
| 6 |
+
yash-thakur,player,Yash Thakur,https://players.cricketstudio.ai/players/yash-thakur
|
| 7 |
+
cameron-green,player,Cameron Green,https://players.cricketstudio.ai/players/cameron-green
|
| 8 |
+
riyan-parag,player,Riyan Parag,https://players.cricketstudio.ai/players/riyan-parag
|
| 9 |
+
shivam-mavi,player,Shivam Mavi,https://players.cricketstudio.ai/players/shivam-mavi
|
| 10 |
+
mayank-markande,player,Mayank Markande,https://players.cricketstudio.ai/players/mayank-markande
|
| 11 |
+
kulwant-khejroliya,player,Kulwant Khejroliya,https://players.cricketstudio.ai/players/kulwant-khejroliya
|
| 12 |
+
devdutt-padikkal,player,Devdutt Padikkal,https://players.cricketstudio.ai/players/devdutt-padikkal
|
| 13 |
+
kartik-tyagi,player,Kartik Tyagi,https://players.cricketstudio.ai/players/kartik-tyagi
|
| 14 |
+
mukesh-choudhary,player,Mukesh Choudhary,https://players.cricketstudio.ai/players/mukesh-choudhary
|
| 15 |
+
arshdeep-singh,player,Arshdeep Singh,https://players.cricketstudio.ai/players/arshdeep-singh
|
| 16 |
+
arjun-tendulkar,player,Arjun Tendulkar,https://players.cricketstudio.ai/players/arjun-tendulkar
|
| 17 |
+
manimaran-siddharth,player,Manimaran Siddharth,https://players.cricketstudio.ai/players/manimaran-siddharth
|
| 18 |
+
shahbaz-ahmed,player,Shahbaz Ahmed,https://players.cricketstudio.ai/players/shahbaz-ahmed
|
| 19 |
+
yash-dayal,player,Yash Dayal,https://players.cricketstudio.ai/players/yash-dayal
|
| 20 |
+
auqib-nabi,player,Auqib Nabi,https://players.cricketstudio.ai/players/auqib-nabi
|
| 21 |
+
harpreet-brar,player,Harpreet Brar,https://players.cricketstudio.ai/players/harpreet-brar
|
| 22 |
+
manav-suthar,player,Manav Suthar,https://players.cricketstudio.ai/players/manav-suthar
|
| 23 |
+
anshul-kamboj,player,Anshul Kamboj,https://players.cricketstudio.ai/players/anshul-kamboj
|
| 24 |
+
ravi-bishnoi,player,Ravi Bishnoi,https://players.cricketstudio.ai/players/ravi-bishnoi
|
| 25 |
+
nitish-kumar-reddy,player,Nitish Kumar Reddy,https://players.cricketstudio.ai/players/nitish-kumar-reddy
|
| 26 |
+
noor-ahmad,player,Noor Ahmad,https://players.cricketstudio.ai/players/noor-ahmad
|
| 27 |
+
jacob-bethell,player,Jacob Bethell,https://players.cricketstudio.ai/players/jacob-bethell
|
| 28 |
+
akash-madhwal,player,Akash Madhwal,https://players.cricketstudio.ai/players/akash-madhwal
|
| 29 |
+
vaibhav-arora,player,Vaibhav Arora,https://players.cricketstudio.ai/players/vaibhav-arora
|
| 30 |
+
harsh-dubey,player,Harsh Dubey,https://players.cricketstudio.ai/players/harsh-dubey
|
| 31 |
+
umran-malik,player,Umran Malik,https://players.cricketstudio.ai/players/umran-malik
|
| 32 |
+
naman-dhir,player,Naman Dhir,https://players.cricketstudio.ai/players/naman-dhir
|
| 33 |
+
raj-angad-bawa,player,Raj Angad Bawa,https://players.cricketstudio.ai/players/raj-angad-bawa
|
| 34 |
+
mayank-yadav,player,Mayank Yadav,https://players.cricketstudio.ai/players/mayank-yadav
|
| 35 |
+
eshan-malinga,player,Eshan Malinga,https://players.cricketstudio.ai/players/eshan-malinga
|
| 36 |
+
musheer-khan,player,Musheer Khan,https://players.cricketstudio.ai/players/musheer-khan
|
| 37 |
+
sakib-hussain,player,Sakib Hussain,https://players.cricketstudio.ai/players/sakib-hussain
|
| 38 |
+
prince-yadav,player,Prince Yadav,https://players.cricketstudio.ai/players/prince-yadav
|
| 39 |
+
suyash-sharma,player,Suyash Sharma,https://players.cricketstudio.ai/players/suyash-sharma
|
| 40 |
+
sunil-narine,player,Sunil Narine,https://players.cricketstudio.ai/players/sunil-narine
|
| 41 |
+
ka-pollard,player,KA Pollard,https://players.cricketstudio.ai/players/ka-pollard
|
| 42 |
+
ravindra-jadeja,player,Ravindra Jadeja,https://players.cricketstudio.ai/players/ravindra-jadeja
|
| 43 |
+
virat-kohli,player,Virat Kohli,https://players.cricketstudio.ai/players/virat-kohli
|
| 44 |
+
wd-parnell,player,WD Parnell,https://players.cricketstudio.ai/players/wd-parnell
|
| 45 |
+
mitchell-marsh,player,Mitchell Marsh,https://players.cricketstudio.ai/players/mitchell-marsh
|
| 46 |
+
ad-russell,player,AD Russell,https://players.cricketstudio.ai/players/ad-russell
|
| 47 |
+
cj-anderson,player,CJ Anderson,https://players.cricketstudio.ai/players/cj-anderson
|
| 48 |
+
trent-boult,player,Trent Boult,https://players.cricketstudio.ai/players/trent-boult
|
| 49 |
+
josh-hazlewood,player,Josh Hazlewood,https://players.cricketstudio.ai/players/josh-hazlewood
|
| 50 |
+
sikandar-raza,player,Sikandar Raza,https://players.cricketstudio.ai/players/sikandar-raza
|
| 51 |
+
marcus-stoinis,player,Marcus Stoinis,https://players.cricketstudio.ai/players/marcus-stoinis
|
| 52 |
+
gj-maxwell,player,GJ Maxwell,https://players.cricketstudio.ai/players/gj-maxwell
|
| 53 |
+
bhuvneshwar-kumar,player,Bhuvneshwar Kumar,https://players.cricketstudio.ai/players/bhuvneshwar-kumar
|
| 54 |
+
d-pretorius,player,D Pretorius,https://players.cricketstudio.ai/players/d-pretorius
|
| 55 |
+
mustafizur-rahman,player,Mustafizur Rahman,https://players.cricketstudio.ai/players/mustafizur-rahman
|
| 56 |
+
saurabh-dubey,player,Saurabh Dubey,https://players.cricketstudio.ai/players/saurabh-dubey
|
| 57 |
+
david-payne,player,David Payne,https://players.cricketstudio.ai/players/david-payne
|
| 58 |
+
shashank-singh,player,Shashank Singh,https://players.cricketstudio.ai/players/shashank-singh
|
| 59 |
+
a-zampa,player,A Zampa,https://players.cricketstudio.ai/players/a-zampa
|
| 60 |
+
arshad-khan,player,Arshad Khan,https://players.cricketstudio.ai/players/arshad-khan
|
| 61 |
+
harshal-patel,player,Harshal Patel,https://players.cricketstudio.ai/players/harshal-patel
|
| 62 |
+
jaydev-unadkat,player,Jaydev Unadkat,https://players.cricketstudio.ai/players/jaydev-unadkat
|
| 63 |
+
jason-holder,player,Jason Holder,https://players.cricketstudio.ai/players/jason-holder
|
| 64 |
+
liam-livingstone,player,Liam Livingstone,https://players.cricketstudio.ai/players/liam-livingstone
|
| 65 |
+
rahul-tewatia,player,Rahul Tewatia,https://players.cricketstudio.ai/players/rahul-tewatia
|
| 66 |
+
yuzvendra-chahal,player,Yuzvendra Chahal,https://players.cricketstudio.ai/players/yuzvendra-chahal
|
| 67 |
+
sandeep-sharma,player,Sandeep Sharma,https://players.cricketstudio.ai/players/sandeep-sharma
|
| 68 |
+
deepak-chahar,player,Deepak Chahar,https://players.cricketstudio.ai/players/deepak-chahar
|
| 69 |
+
jayant-yadav,player,Jayant Yadav,https://players.cricketstudio.ai/players/jayant-yadav
|
| 70 |
+
aj-tye,player,AJ Tye,https://players.cricketstudio.ai/players/aj-tye
|
| 71 |
+
krunal-pandya,player,Krunal Pandya,https://players.cricketstudio.ai/players/krunal-pandya
|
| 72 |
+
shardul-thakur,player,Shardul Thakur,https://players.cricketstudio.ai/players/shardul-thakur
|
| 73 |
+
mohammed-shami,player,Mohammed Shami,https://players.cricketstudio.ai/players/mohammed-shami
|
| 74 |
+
anrich-nortje,player,Anrich Nortje,https://players.cricketstudio.ai/players/anrich-nortje
|
| 75 |
+
pat-cummins,player,Pat Cummins,https://players.cricketstudio.ai/players/pat-cummins
|
| 76 |
+
lockie-ferguson,player,Lockie Ferguson,https://players.cricketstudio.ai/players/lockie-ferguson
|
| 77 |
+
mitchell-santner,player,Mitchell Santner,https://players.cricketstudio.ai/players/mitchell-santner
|
| 78 |
+
matt-henry,player,Matt Henry,https://players.cricketstudio.ai/players/matt-henry
|
| 79 |
+
jamie-overton,player,Jamie Overton,https://players.cricketstudio.ai/players/jamie-overton
|
| 80 |
+
dj-bravo,player,DJ Bravo,https://players.cricketstudio.ai/players/dj-bravo
|
| 81 |
+
akeal-hosein,player,Akeal Hosein,https://players.cricketstudio.ai/players/akeal-hosein
|
| 82 |
+
lungi-ngidi,player,Lungi Ngidi,https://players.cricketstudio.ai/players/lungi-ngidi
|
| 83 |
+
jacob-duffy,player,Jacob Duffy,https://players.cricketstudio.ai/players/jacob-duffy
|
| 84 |
+
kagiso-rabada,player,Kagiso Rabada,https://players.cricketstudio.ai/players/kagiso-rabada
|
| 85 |
+
dushmantha-chameera,player,Dushmantha Chameera,https://players.cricketstudio.ai/players/dushmantha-chameera
|
| 86 |
+
axar-patel,player,Axar Patel,https://players.cricketstudio.ai/players/axar-patel
|
| 87 |
+
kuldeep-yadav,player,Kuldeep Yadav,https://players.cricketstudio.ai/players/kuldeep-yadav
|
| 88 |
+
shakib-al-hasan,player,Shakib Al Hasan,https://players.cricketstudio.ai/players/shakib-al-hasan
|
| 89 |
+
corbin-bosch,player,Corbin Bosch,https://players.cricketstudio.ai/players/corbin-bosch
|
| 90 |
+
g-coetzee,player,G Coetzee,https://players.cricketstudio.ai/players/g-coetzee
|
| 91 |
+
mc-henriques,player,MC Henriques,https://players.cricketstudio.ai/players/mc-henriques
|
| 92 |
+
aiden-markram,player,Aiden Markram,https://players.cricketstudio.ai/players/aiden-markram
|
| 93 |
+
nitish-rana,player,Nitish Rana,https://players.cricketstudio.ai/players/nitish-rana
|
| 94 |
+
hardik-pandya,player,Hardik Pandya,https://players.cricketstudio.ai/players/hardik-pandya
|
| 95 |
+
jasprit-bumrah,player,Jasprit Bumrah,https://players.cricketstudio.ai/players/jasprit-bumrah
|
| 96 |
+
kyle-jamieson,player,Kyle Jamieson,https://players.cricketstudio.ai/players/kyle-jamieson
|
| 97 |
+
philip-salt,player,Philip Salt,https://players.cricketstudio.ai/players/philip-salt
|
| 98 |
+
jofra-archer,player,Jofra Archer,https://players.cricketstudio.ai/players/jofra-archer
|
| 99 |
+
fa-allen,player,FA Allen,https://players.cricketstudio.ai/players/fa-allen
|
| 100 |
+
romario-shepherd,player,Romario Shepherd,https://players.cricketstudio.ai/players/romario-shepherd
|
| 101 |
+
kma-paul,player,KMA Paul,https://players.cricketstudio.ai/players/kma-paul
|
| 102 |
+
avesh-khan,player,Avesh Khan,https://players.cricketstudio.ai/players/avesh-khan
|
| 103 |
+
marco-jansen,player,Marco Jansen,https://players.cricketstudio.ai/players/marco-jansen
|
| 104 |
+
navdeep-saini,player,Navdeep Saini,https://players.cricketstudio.ai/players/navdeep-saini
|
| 105 |
+
shivam-dube,player,Shivam Dube,https://players.cricketstudio.ai/players/shivam-dube
|
| 106 |
+
washington-sundar,player,Washington Sundar,https://players.cricketstudio.ai/players/washington-sundar
|
| 107 |
+
jitesh-sharma,player,Jitesh Sharma,https://players.cricketstudio.ai/players/jitesh-sharma
|
| 108 |
+
vijaykumar-vyshak,player,Vijaykumar Vyshak,https://players.cricketstudio.ai/players/vijaykumar-vyshak
|
| 109 |
+
naveen-ul-haq,player,Naveen-ul-Haq,https://players.cricketstudio.ai/players/naveen-ul-haq
|
| 110 |
+
rashid-khan,player,Rashid Khan,https://players.cricketstudio.ai/players/rashid-khan
|
| 111 |
+
thangarasu-natarajan,player,Thangarasu Natarajan,https://players.cricketstudio.ai/players/thangarasu-natarajan
|
| 112 |
+
azmatullah-omarzai,player,Azmatullah Omarzai,https://players.cricketstudio.ai/players/azmatullah-omarzai
|
| 113 |
+
tushar-deshpande,player,Tushar Deshpande,https://players.cricketstudio.ai/players/tushar-deshpande
|
| 114 |
+
rajat-patidar,player,Rajat Patidar,https://players.cricketstudio.ai/players/rajat-patidar
|
| 115 |
+
dr-sams,player,DR Sams,https://players.cricketstudio.ai/players/dr-sams
|
| 116 |
+
venkatesh-iyer,player,Venkatesh Iyer,https://players.cricketstudio.ai/players/venkatesh-iyer
|
| 117 |
+
tim-david,player,Tim David,https://players.cricketstudio.ai/players/tim-david
|
| 118 |
+
will-jacks,player,Will Jacks,https://players.cricketstudio.ai/players/will-jacks
|
| 119 |
+
oc-mccoy,player,OC McCoy,https://players.cricketstudio.ai/players/oc-mccoy
|
| 120 |
+
prasidh-krishna,player,Prasidh Krishna,https://players.cricketstudio.ai/players/prasidh-krishna
|
| 121 |
+
mukesh-kumar,player,Mukesh Kumar,https://players.cricketstudio.ai/players/mukesh-kumar
|
| 122 |
+
j-little,player,J Little,https://players.cricketstudio.ai/players/j-little
|
| 123 |
+
mohammed-siraj,player,Mohammed Siraj,https://players.cricketstudio.ai/players/mohammed-siraj
|
| 124 |
+
khaleel-ahmed,player,Khaleel Ahmed,https://players.cricketstudio.ai/players/khaleel-ahmed
|
| 125 |
+
nandre-burger,player,Nandre Burger,https://players.cricketstudio.ai/players/nandre-burger
|
| 126 |
+
abhinandan-singh,player,Abhinandan Singh,https://players.cricketstudio.ai/players/abhinandan-singh
|
| 127 |
+
adam-milne,player,Adam Milne,https://players.cricketstudio.ai/players/adam-milne
|
| 128 |
+
am-ghazanfar,player,AM Ghazanfar,https://players.cricketstudio.ai/players/am-ghazanfar
|
| 129 |
+
anukul-roy,player,Anukul Roy,https://players.cricketstudio.ai/players/anukul-roy
|
| 130 |
+
brijesh-sharma,player,Brijesh Sharma,https://players.cricketstudio.ai/players/brijesh-sharma
|
| 131 |
+
digvesh-rathi,player,Digvesh Rathi,https://players.cricketstudio.ai/players/digvesh-rathi
|
| 132 |
+
ishant-sharma,player,Ishant Sharma,https://players.cricketstudio.ai/players/ishant-sharma
|
| 133 |
+
kuldeep-sen,player,Kuldeep Sen,https://players.cricketstudio.ai/players/kuldeep-sen
|
| 134 |
+
matheesha-pathirana,player,Matheesha Pathirana,https://players.cricketstudio.ai/players/matheesha-pathirana
|
| 135 |
+
mitchell-starc,player,Mitchell Starc,https://players.cricketstudio.ai/players/mitchell-starc
|
| 136 |
+
nuwan-thushara,player,Nuwan Thushara,https://players.cricketstudio.ai/players/nuwan-thushara
|
| 137 |
+
rasikh-salam-dar,player,Rasikh Salam Dar,https://players.cricketstudio.ai/players/rasikh-salam-dar
|
| 138 |
+
sai-kishore,player,Sai Kishore,https://players.cricketstudio.ai/players/sai-kishore
|
| 139 |
+
shivang-kumar,player,Shivang Kumar,https://players.cricketstudio.ai/players/shivang-kumar
|
| 140 |
+
shreyas-gopal,player,Shreyas Gopal,https://players.cricketstudio.ai/players/shreyas-gopal
|
| 141 |
+
spencer-johnson,player,Spencer Johnson,https://players.cricketstudio.ai/players/spencer-johnson
|
| 142 |
+
vipraj-nigam,player,Vipraj Nigam,https://players.cricketstudio.ai/players/vipraj-nigam
|
nodes.json
ADDED
|
@@ -0,0 +1,857 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "cricket-knowledge-graph-sample",
|
| 3 |
+
"scope": "Single-franchise SAMPLE (Royal Challengers Bengaluru) — IPL 2026 + IPL-career matchup edges",
|
| 4 |
+
"note": "Sample teaser. The full graph is available via the CricketStudio API (gated). No external-ID crosswalk, no derivation method, no match/fixture identifiers.",
|
| 5 |
+
"publisher": "CricketStudio",
|
| 6 |
+
"homepage": "https://players.cricketstudio.ai",
|
| 7 |
+
"license": "CC BY 4.0",
|
| 8 |
+
"count": 141,
|
| 9 |
+
"nodes": [
|
| 10 |
+
{
|
| 11 |
+
"id": "rcb",
|
| 12 |
+
"type": "franchise",
|
| 13 |
+
"name": "Royal Challengers Bengaluru",
|
| 14 |
+
"canonical_url": "https://players.cricketstudio.ai/teams/rcb"
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"id": "xavier-bartlett",
|
| 18 |
+
"type": "player",
|
| 19 |
+
"name": "Xavier Bartlett",
|
| 20 |
+
"canonical_url": "https://players.cricketstudio.ai/players/xavier-bartlett"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"id": "rahul-chahar",
|
| 24 |
+
"type": "player",
|
| 25 |
+
"name": "Rahul Chahar",
|
| 26 |
+
"canonical_url": "https://players.cricketstudio.ai/players/rahul-chahar"
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"id": "abhishek-sharma",
|
| 30 |
+
"type": "player",
|
| 31 |
+
"name": "Abhishek Sharma",
|
| 32 |
+
"canonical_url": "https://players.cricketstudio.ai/players/abhishek-sharma"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"id": "yash-thakur",
|
| 36 |
+
"type": "player",
|
| 37 |
+
"name": "Yash Thakur",
|
| 38 |
+
"canonical_url": "https://players.cricketstudio.ai/players/yash-thakur"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"id": "cameron-green",
|
| 42 |
+
"type": "player",
|
| 43 |
+
"name": "Cameron Green",
|
| 44 |
+
"canonical_url": "https://players.cricketstudio.ai/players/cameron-green"
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"id": "riyan-parag",
|
| 48 |
+
"type": "player",
|
| 49 |
+
"name": "Riyan Parag",
|
| 50 |
+
"canonical_url": "https://players.cricketstudio.ai/players/riyan-parag"
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"id": "shivam-mavi",
|
| 54 |
+
"type": "player",
|
| 55 |
+
"name": "Shivam Mavi",
|
| 56 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shivam-mavi"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"id": "mayank-markande",
|
| 60 |
+
"type": "player",
|
| 61 |
+
"name": "Mayank Markande",
|
| 62 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mayank-markande"
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"id": "kulwant-khejroliya",
|
| 66 |
+
"type": "player",
|
| 67 |
+
"name": "Kulwant Khejroliya",
|
| 68 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kulwant-khejroliya"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "devdutt-padikkal",
|
| 72 |
+
"type": "player",
|
| 73 |
+
"name": "Devdutt Padikkal",
|
| 74 |
+
"canonical_url": "https://players.cricketstudio.ai/players/devdutt-padikkal"
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"id": "kartik-tyagi",
|
| 78 |
+
"type": "player",
|
| 79 |
+
"name": "Kartik Tyagi",
|
| 80 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kartik-tyagi"
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"id": "mukesh-choudhary",
|
| 84 |
+
"type": "player",
|
| 85 |
+
"name": "Mukesh Choudhary",
|
| 86 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mukesh-choudhary"
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"id": "arshdeep-singh",
|
| 90 |
+
"type": "player",
|
| 91 |
+
"name": "Arshdeep Singh",
|
| 92 |
+
"canonical_url": "https://players.cricketstudio.ai/players/arshdeep-singh"
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"id": "arjun-tendulkar",
|
| 96 |
+
"type": "player",
|
| 97 |
+
"name": "Arjun Tendulkar",
|
| 98 |
+
"canonical_url": "https://players.cricketstudio.ai/players/arjun-tendulkar"
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"id": "manimaran-siddharth",
|
| 102 |
+
"type": "player",
|
| 103 |
+
"name": "Manimaran Siddharth",
|
| 104 |
+
"canonical_url": "https://players.cricketstudio.ai/players/manimaran-siddharth"
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"id": "shahbaz-ahmed",
|
| 108 |
+
"type": "player",
|
| 109 |
+
"name": "Shahbaz Ahmed",
|
| 110 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shahbaz-ahmed"
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"id": "yash-dayal",
|
| 114 |
+
"type": "player",
|
| 115 |
+
"name": "Yash Dayal",
|
| 116 |
+
"canonical_url": "https://players.cricketstudio.ai/players/yash-dayal"
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"id": "auqib-nabi",
|
| 120 |
+
"type": "player",
|
| 121 |
+
"name": "Auqib Nabi",
|
| 122 |
+
"canonical_url": "https://players.cricketstudio.ai/players/auqib-nabi"
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"id": "harpreet-brar",
|
| 126 |
+
"type": "player",
|
| 127 |
+
"name": "Harpreet Brar",
|
| 128 |
+
"canonical_url": "https://players.cricketstudio.ai/players/harpreet-brar"
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"id": "manav-suthar",
|
| 132 |
+
"type": "player",
|
| 133 |
+
"name": "Manav Suthar",
|
| 134 |
+
"canonical_url": "https://players.cricketstudio.ai/players/manav-suthar"
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"id": "anshul-kamboj",
|
| 138 |
+
"type": "player",
|
| 139 |
+
"name": "Anshul Kamboj",
|
| 140 |
+
"canonical_url": "https://players.cricketstudio.ai/players/anshul-kamboj"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"id": "ravi-bishnoi",
|
| 144 |
+
"type": "player",
|
| 145 |
+
"name": "Ravi Bishnoi",
|
| 146 |
+
"canonical_url": "https://players.cricketstudio.ai/players/ravi-bishnoi"
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"id": "nitish-kumar-reddy",
|
| 150 |
+
"type": "player",
|
| 151 |
+
"name": "Nitish Kumar Reddy",
|
| 152 |
+
"canonical_url": "https://players.cricketstudio.ai/players/nitish-kumar-reddy"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"id": "noor-ahmad",
|
| 156 |
+
"type": "player",
|
| 157 |
+
"name": "Noor Ahmad",
|
| 158 |
+
"canonical_url": "https://players.cricketstudio.ai/players/noor-ahmad"
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"id": "jacob-bethell",
|
| 162 |
+
"type": "player",
|
| 163 |
+
"name": "Jacob Bethell",
|
| 164 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jacob-bethell"
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"id": "akash-madhwal",
|
| 168 |
+
"type": "player",
|
| 169 |
+
"name": "Akash Madhwal",
|
| 170 |
+
"canonical_url": "https://players.cricketstudio.ai/players/akash-madhwal"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "vaibhav-arora",
|
| 174 |
+
"type": "player",
|
| 175 |
+
"name": "Vaibhav Arora",
|
| 176 |
+
"canonical_url": "https://players.cricketstudio.ai/players/vaibhav-arora"
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"id": "harsh-dubey",
|
| 180 |
+
"type": "player",
|
| 181 |
+
"name": "Harsh Dubey",
|
| 182 |
+
"canonical_url": "https://players.cricketstudio.ai/players/harsh-dubey"
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"id": "umran-malik",
|
| 186 |
+
"type": "player",
|
| 187 |
+
"name": "Umran Malik",
|
| 188 |
+
"canonical_url": "https://players.cricketstudio.ai/players/umran-malik"
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"id": "naman-dhir",
|
| 192 |
+
"type": "player",
|
| 193 |
+
"name": "Naman Dhir",
|
| 194 |
+
"canonical_url": "https://players.cricketstudio.ai/players/naman-dhir"
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"id": "raj-angad-bawa",
|
| 198 |
+
"type": "player",
|
| 199 |
+
"name": "Raj Angad Bawa",
|
| 200 |
+
"canonical_url": "https://players.cricketstudio.ai/players/raj-angad-bawa"
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"id": "mayank-yadav",
|
| 204 |
+
"type": "player",
|
| 205 |
+
"name": "Mayank Yadav",
|
| 206 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mayank-yadav"
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"id": "eshan-malinga",
|
| 210 |
+
"type": "player",
|
| 211 |
+
"name": "Eshan Malinga",
|
| 212 |
+
"canonical_url": "https://players.cricketstudio.ai/players/eshan-malinga"
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"id": "musheer-khan",
|
| 216 |
+
"type": "player",
|
| 217 |
+
"name": "Musheer Khan",
|
| 218 |
+
"canonical_url": "https://players.cricketstudio.ai/players/musheer-khan"
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"id": "sakib-hussain",
|
| 222 |
+
"type": "player",
|
| 223 |
+
"name": "Sakib Hussain",
|
| 224 |
+
"canonical_url": "https://players.cricketstudio.ai/players/sakib-hussain"
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"id": "prince-yadav",
|
| 228 |
+
"type": "player",
|
| 229 |
+
"name": "Prince Yadav",
|
| 230 |
+
"canonical_url": "https://players.cricketstudio.ai/players/prince-yadav"
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"id": "suyash-sharma",
|
| 234 |
+
"type": "player",
|
| 235 |
+
"name": "Suyash Sharma",
|
| 236 |
+
"canonical_url": "https://players.cricketstudio.ai/players/suyash-sharma"
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"id": "sunil-narine",
|
| 240 |
+
"type": "player",
|
| 241 |
+
"name": "Sunil Narine",
|
| 242 |
+
"canonical_url": "https://players.cricketstudio.ai/players/sunil-narine"
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"id": "ka-pollard",
|
| 246 |
+
"type": "player",
|
| 247 |
+
"name": "KA Pollard",
|
| 248 |
+
"canonical_url": "https://players.cricketstudio.ai/players/ka-pollard"
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"id": "ravindra-jadeja",
|
| 252 |
+
"type": "player",
|
| 253 |
+
"name": "Ravindra Jadeja",
|
| 254 |
+
"canonical_url": "https://players.cricketstudio.ai/players/ravindra-jadeja"
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"id": "virat-kohli",
|
| 258 |
+
"type": "player",
|
| 259 |
+
"name": "Virat Kohli",
|
| 260 |
+
"canonical_url": "https://players.cricketstudio.ai/players/virat-kohli"
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"id": "wd-parnell",
|
| 264 |
+
"type": "player",
|
| 265 |
+
"name": "WD Parnell",
|
| 266 |
+
"canonical_url": "https://players.cricketstudio.ai/players/wd-parnell"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"id": "mitchell-marsh",
|
| 270 |
+
"type": "player",
|
| 271 |
+
"name": "Mitchell Marsh",
|
| 272 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mitchell-marsh"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "ad-russell",
|
| 276 |
+
"type": "player",
|
| 277 |
+
"name": "AD Russell",
|
| 278 |
+
"canonical_url": "https://players.cricketstudio.ai/players/ad-russell"
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"id": "cj-anderson",
|
| 282 |
+
"type": "player",
|
| 283 |
+
"name": "CJ Anderson",
|
| 284 |
+
"canonical_url": "https://players.cricketstudio.ai/players/cj-anderson"
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"id": "trent-boult",
|
| 288 |
+
"type": "player",
|
| 289 |
+
"name": "Trent Boult",
|
| 290 |
+
"canonical_url": "https://players.cricketstudio.ai/players/trent-boult"
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"id": "josh-hazlewood",
|
| 294 |
+
"type": "player",
|
| 295 |
+
"name": "Josh Hazlewood",
|
| 296 |
+
"canonical_url": "https://players.cricketstudio.ai/players/josh-hazlewood"
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"id": "sikandar-raza",
|
| 300 |
+
"type": "player",
|
| 301 |
+
"name": "Sikandar Raza",
|
| 302 |
+
"canonical_url": "https://players.cricketstudio.ai/players/sikandar-raza"
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"id": "marcus-stoinis",
|
| 306 |
+
"type": "player",
|
| 307 |
+
"name": "Marcus Stoinis",
|
| 308 |
+
"canonical_url": "https://players.cricketstudio.ai/players/marcus-stoinis"
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"id": "gj-maxwell",
|
| 312 |
+
"type": "player",
|
| 313 |
+
"name": "GJ Maxwell",
|
| 314 |
+
"canonical_url": "https://players.cricketstudio.ai/players/gj-maxwell"
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"id": "bhuvneshwar-kumar",
|
| 318 |
+
"type": "player",
|
| 319 |
+
"name": "Bhuvneshwar Kumar",
|
| 320 |
+
"canonical_url": "https://players.cricketstudio.ai/players/bhuvneshwar-kumar"
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"id": "d-pretorius",
|
| 324 |
+
"type": "player",
|
| 325 |
+
"name": "D Pretorius",
|
| 326 |
+
"canonical_url": "https://players.cricketstudio.ai/players/d-pretorius"
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"id": "mustafizur-rahman",
|
| 330 |
+
"type": "player",
|
| 331 |
+
"name": "Mustafizur Rahman",
|
| 332 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mustafizur-rahman"
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"id": "saurabh-dubey",
|
| 336 |
+
"type": "player",
|
| 337 |
+
"name": "Saurabh Dubey",
|
| 338 |
+
"canonical_url": "https://players.cricketstudio.ai/players/saurabh-dubey"
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"id": "david-payne",
|
| 342 |
+
"type": "player",
|
| 343 |
+
"name": "David Payne",
|
| 344 |
+
"canonical_url": "https://players.cricketstudio.ai/players/david-payne"
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"id": "shashank-singh",
|
| 348 |
+
"type": "player",
|
| 349 |
+
"name": "Shashank Singh",
|
| 350 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shashank-singh"
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"id": "a-zampa",
|
| 354 |
+
"type": "player",
|
| 355 |
+
"name": "A Zampa",
|
| 356 |
+
"canonical_url": "https://players.cricketstudio.ai/players/a-zampa"
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"id": "arshad-khan",
|
| 360 |
+
"type": "player",
|
| 361 |
+
"name": "Arshad Khan",
|
| 362 |
+
"canonical_url": "https://players.cricketstudio.ai/players/arshad-khan"
|
| 363 |
+
},
|
| 364 |
+
{
|
| 365 |
+
"id": "harshal-patel",
|
| 366 |
+
"type": "player",
|
| 367 |
+
"name": "Harshal Patel",
|
| 368 |
+
"canonical_url": "https://players.cricketstudio.ai/players/harshal-patel"
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"id": "jaydev-unadkat",
|
| 372 |
+
"type": "player",
|
| 373 |
+
"name": "Jaydev Unadkat",
|
| 374 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jaydev-unadkat"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "jason-holder",
|
| 378 |
+
"type": "player",
|
| 379 |
+
"name": "Jason Holder",
|
| 380 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jason-holder"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"id": "liam-livingstone",
|
| 384 |
+
"type": "player",
|
| 385 |
+
"name": "Liam Livingstone",
|
| 386 |
+
"canonical_url": "https://players.cricketstudio.ai/players/liam-livingstone"
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"id": "rahul-tewatia",
|
| 390 |
+
"type": "player",
|
| 391 |
+
"name": "Rahul Tewatia",
|
| 392 |
+
"canonical_url": "https://players.cricketstudio.ai/players/rahul-tewatia"
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"id": "yuzvendra-chahal",
|
| 396 |
+
"type": "player",
|
| 397 |
+
"name": "Yuzvendra Chahal",
|
| 398 |
+
"canonical_url": "https://players.cricketstudio.ai/players/yuzvendra-chahal"
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"id": "sandeep-sharma",
|
| 402 |
+
"type": "player",
|
| 403 |
+
"name": "Sandeep Sharma",
|
| 404 |
+
"canonical_url": "https://players.cricketstudio.ai/players/sandeep-sharma"
|
| 405 |
+
},
|
| 406 |
+
{
|
| 407 |
+
"id": "deepak-chahar",
|
| 408 |
+
"type": "player",
|
| 409 |
+
"name": "Deepak Chahar",
|
| 410 |
+
"canonical_url": "https://players.cricketstudio.ai/players/deepak-chahar"
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"id": "jayant-yadav",
|
| 414 |
+
"type": "player",
|
| 415 |
+
"name": "Jayant Yadav",
|
| 416 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jayant-yadav"
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"id": "aj-tye",
|
| 420 |
+
"type": "player",
|
| 421 |
+
"name": "AJ Tye",
|
| 422 |
+
"canonical_url": "https://players.cricketstudio.ai/players/aj-tye"
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"id": "krunal-pandya",
|
| 426 |
+
"type": "player",
|
| 427 |
+
"name": "Krunal Pandya",
|
| 428 |
+
"canonical_url": "https://players.cricketstudio.ai/players/krunal-pandya"
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"id": "shardul-thakur",
|
| 432 |
+
"type": "player",
|
| 433 |
+
"name": "Shardul Thakur",
|
| 434 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shardul-thakur"
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"id": "mohammed-shami",
|
| 438 |
+
"type": "player",
|
| 439 |
+
"name": "Mohammed Shami",
|
| 440 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mohammed-shami"
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"id": "anrich-nortje",
|
| 444 |
+
"type": "player",
|
| 445 |
+
"name": "Anrich Nortje",
|
| 446 |
+
"canonical_url": "https://players.cricketstudio.ai/players/anrich-nortje"
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"id": "pat-cummins",
|
| 450 |
+
"type": "player",
|
| 451 |
+
"name": "Pat Cummins",
|
| 452 |
+
"canonical_url": "https://players.cricketstudio.ai/players/pat-cummins"
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"id": "lockie-ferguson",
|
| 456 |
+
"type": "player",
|
| 457 |
+
"name": "Lockie Ferguson",
|
| 458 |
+
"canonical_url": "https://players.cricketstudio.ai/players/lockie-ferguson"
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"id": "mitchell-santner",
|
| 462 |
+
"type": "player",
|
| 463 |
+
"name": "Mitchell Santner",
|
| 464 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mitchell-santner"
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"id": "matt-henry",
|
| 468 |
+
"type": "player",
|
| 469 |
+
"name": "Matt Henry",
|
| 470 |
+
"canonical_url": "https://players.cricketstudio.ai/players/matt-henry"
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"id": "jamie-overton",
|
| 474 |
+
"type": "player",
|
| 475 |
+
"name": "Jamie Overton",
|
| 476 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jamie-overton"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "dj-bravo",
|
| 480 |
+
"type": "player",
|
| 481 |
+
"name": "DJ Bravo",
|
| 482 |
+
"canonical_url": "https://players.cricketstudio.ai/players/dj-bravo"
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"id": "akeal-hosein",
|
| 486 |
+
"type": "player",
|
| 487 |
+
"name": "Akeal Hosein",
|
| 488 |
+
"canonical_url": "https://players.cricketstudio.ai/players/akeal-hosein"
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"id": "lungi-ngidi",
|
| 492 |
+
"type": "player",
|
| 493 |
+
"name": "Lungi Ngidi",
|
| 494 |
+
"canonical_url": "https://players.cricketstudio.ai/players/lungi-ngidi"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"id": "jacob-duffy",
|
| 498 |
+
"type": "player",
|
| 499 |
+
"name": "Jacob Duffy",
|
| 500 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jacob-duffy"
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"id": "kagiso-rabada",
|
| 504 |
+
"type": "player",
|
| 505 |
+
"name": "Kagiso Rabada",
|
| 506 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kagiso-rabada"
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"id": "dushmantha-chameera",
|
| 510 |
+
"type": "player",
|
| 511 |
+
"name": "Dushmantha Chameera",
|
| 512 |
+
"canonical_url": "https://players.cricketstudio.ai/players/dushmantha-chameera"
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"id": "axar-patel",
|
| 516 |
+
"type": "player",
|
| 517 |
+
"name": "Axar Patel",
|
| 518 |
+
"canonical_url": "https://players.cricketstudio.ai/players/axar-patel"
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"id": "kuldeep-yadav",
|
| 522 |
+
"type": "player",
|
| 523 |
+
"name": "Kuldeep Yadav",
|
| 524 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kuldeep-yadav"
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"id": "shakib-al-hasan",
|
| 528 |
+
"type": "player",
|
| 529 |
+
"name": "Shakib Al Hasan",
|
| 530 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shakib-al-hasan"
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"id": "corbin-bosch",
|
| 534 |
+
"type": "player",
|
| 535 |
+
"name": "Corbin Bosch",
|
| 536 |
+
"canonical_url": "https://players.cricketstudio.ai/players/corbin-bosch"
|
| 537 |
+
},
|
| 538 |
+
{
|
| 539 |
+
"id": "g-coetzee",
|
| 540 |
+
"type": "player",
|
| 541 |
+
"name": "G Coetzee",
|
| 542 |
+
"canonical_url": "https://players.cricketstudio.ai/players/g-coetzee"
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"id": "mc-henriques",
|
| 546 |
+
"type": "player",
|
| 547 |
+
"name": "MC Henriques",
|
| 548 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mc-henriques"
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"id": "aiden-markram",
|
| 552 |
+
"type": "player",
|
| 553 |
+
"name": "Aiden Markram",
|
| 554 |
+
"canonical_url": "https://players.cricketstudio.ai/players/aiden-markram"
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"id": "nitish-rana",
|
| 558 |
+
"type": "player",
|
| 559 |
+
"name": "Nitish Rana",
|
| 560 |
+
"canonical_url": "https://players.cricketstudio.ai/players/nitish-rana"
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"id": "hardik-pandya",
|
| 564 |
+
"type": "player",
|
| 565 |
+
"name": "Hardik Pandya",
|
| 566 |
+
"canonical_url": "https://players.cricketstudio.ai/players/hardik-pandya"
|
| 567 |
+
},
|
| 568 |
+
{
|
| 569 |
+
"id": "jasprit-bumrah",
|
| 570 |
+
"type": "player",
|
| 571 |
+
"name": "Jasprit Bumrah",
|
| 572 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jasprit-bumrah"
|
| 573 |
+
},
|
| 574 |
+
{
|
| 575 |
+
"id": "kyle-jamieson",
|
| 576 |
+
"type": "player",
|
| 577 |
+
"name": "Kyle Jamieson",
|
| 578 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kyle-jamieson"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"id": "philip-salt",
|
| 582 |
+
"type": "player",
|
| 583 |
+
"name": "Philip Salt",
|
| 584 |
+
"canonical_url": "https://players.cricketstudio.ai/players/philip-salt"
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"id": "jofra-archer",
|
| 588 |
+
"type": "player",
|
| 589 |
+
"name": "Jofra Archer",
|
| 590 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jofra-archer"
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"id": "fa-allen",
|
| 594 |
+
"type": "player",
|
| 595 |
+
"name": "FA Allen",
|
| 596 |
+
"canonical_url": "https://players.cricketstudio.ai/players/fa-allen"
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"id": "romario-shepherd",
|
| 600 |
+
"type": "player",
|
| 601 |
+
"name": "Romario Shepherd",
|
| 602 |
+
"canonical_url": "https://players.cricketstudio.ai/players/romario-shepherd"
|
| 603 |
+
},
|
| 604 |
+
{
|
| 605 |
+
"id": "kma-paul",
|
| 606 |
+
"type": "player",
|
| 607 |
+
"name": "KMA Paul",
|
| 608 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kma-paul"
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"id": "avesh-khan",
|
| 612 |
+
"type": "player",
|
| 613 |
+
"name": "Avesh Khan",
|
| 614 |
+
"canonical_url": "https://players.cricketstudio.ai/players/avesh-khan"
|
| 615 |
+
},
|
| 616 |
+
{
|
| 617 |
+
"id": "marco-jansen",
|
| 618 |
+
"type": "player",
|
| 619 |
+
"name": "Marco Jansen",
|
| 620 |
+
"canonical_url": "https://players.cricketstudio.ai/players/marco-jansen"
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"id": "navdeep-saini",
|
| 624 |
+
"type": "player",
|
| 625 |
+
"name": "Navdeep Saini",
|
| 626 |
+
"canonical_url": "https://players.cricketstudio.ai/players/navdeep-saini"
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"id": "shivam-dube",
|
| 630 |
+
"type": "player",
|
| 631 |
+
"name": "Shivam Dube",
|
| 632 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shivam-dube"
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"id": "washington-sundar",
|
| 636 |
+
"type": "player",
|
| 637 |
+
"name": "Washington Sundar",
|
| 638 |
+
"canonical_url": "https://players.cricketstudio.ai/players/washington-sundar"
|
| 639 |
+
},
|
| 640 |
+
{
|
| 641 |
+
"id": "jitesh-sharma",
|
| 642 |
+
"type": "player",
|
| 643 |
+
"name": "Jitesh Sharma",
|
| 644 |
+
"canonical_url": "https://players.cricketstudio.ai/players/jitesh-sharma"
|
| 645 |
+
},
|
| 646 |
+
{
|
| 647 |
+
"id": "vijaykumar-vyshak",
|
| 648 |
+
"type": "player",
|
| 649 |
+
"name": "Vijaykumar Vyshak",
|
| 650 |
+
"canonical_url": "https://players.cricketstudio.ai/players/vijaykumar-vyshak"
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"id": "naveen-ul-haq",
|
| 654 |
+
"type": "player",
|
| 655 |
+
"name": "Naveen-ul-Haq",
|
| 656 |
+
"canonical_url": "https://players.cricketstudio.ai/players/naveen-ul-haq"
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"id": "rashid-khan",
|
| 660 |
+
"type": "player",
|
| 661 |
+
"name": "Rashid Khan",
|
| 662 |
+
"canonical_url": "https://players.cricketstudio.ai/players/rashid-khan"
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"id": "thangarasu-natarajan",
|
| 666 |
+
"type": "player",
|
| 667 |
+
"name": "Thangarasu Natarajan",
|
| 668 |
+
"canonical_url": "https://players.cricketstudio.ai/players/thangarasu-natarajan"
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"id": "azmatullah-omarzai",
|
| 672 |
+
"type": "player",
|
| 673 |
+
"name": "Azmatullah Omarzai",
|
| 674 |
+
"canonical_url": "https://players.cricketstudio.ai/players/azmatullah-omarzai"
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"id": "tushar-deshpande",
|
| 678 |
+
"type": "player",
|
| 679 |
+
"name": "Tushar Deshpande",
|
| 680 |
+
"canonical_url": "https://players.cricketstudio.ai/players/tushar-deshpande"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"id": "rajat-patidar",
|
| 684 |
+
"type": "player",
|
| 685 |
+
"name": "Rajat Patidar",
|
| 686 |
+
"canonical_url": "https://players.cricketstudio.ai/players/rajat-patidar"
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"id": "dr-sams",
|
| 690 |
+
"type": "player",
|
| 691 |
+
"name": "DR Sams",
|
| 692 |
+
"canonical_url": "https://players.cricketstudio.ai/players/dr-sams"
|
| 693 |
+
},
|
| 694 |
+
{
|
| 695 |
+
"id": "venkatesh-iyer",
|
| 696 |
+
"type": "player",
|
| 697 |
+
"name": "Venkatesh Iyer",
|
| 698 |
+
"canonical_url": "https://players.cricketstudio.ai/players/venkatesh-iyer"
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"id": "tim-david",
|
| 702 |
+
"type": "player",
|
| 703 |
+
"name": "Tim David",
|
| 704 |
+
"canonical_url": "https://players.cricketstudio.ai/players/tim-david"
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"id": "will-jacks",
|
| 708 |
+
"type": "player",
|
| 709 |
+
"name": "Will Jacks",
|
| 710 |
+
"canonical_url": "https://players.cricketstudio.ai/players/will-jacks"
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"id": "oc-mccoy",
|
| 714 |
+
"type": "player",
|
| 715 |
+
"name": "OC McCoy",
|
| 716 |
+
"canonical_url": "https://players.cricketstudio.ai/players/oc-mccoy"
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"id": "prasidh-krishna",
|
| 720 |
+
"type": "player",
|
| 721 |
+
"name": "Prasidh Krishna",
|
| 722 |
+
"canonical_url": "https://players.cricketstudio.ai/players/prasidh-krishna"
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"id": "mukesh-kumar",
|
| 726 |
+
"type": "player",
|
| 727 |
+
"name": "Mukesh Kumar",
|
| 728 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mukesh-kumar"
|
| 729 |
+
},
|
| 730 |
+
{
|
| 731 |
+
"id": "j-little",
|
| 732 |
+
"type": "player",
|
| 733 |
+
"name": "J Little",
|
| 734 |
+
"canonical_url": "https://players.cricketstudio.ai/players/j-little"
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"id": "mohammed-siraj",
|
| 738 |
+
"type": "player",
|
| 739 |
+
"name": "Mohammed Siraj",
|
| 740 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mohammed-siraj"
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"id": "khaleel-ahmed",
|
| 744 |
+
"type": "player",
|
| 745 |
+
"name": "Khaleel Ahmed",
|
| 746 |
+
"canonical_url": "https://players.cricketstudio.ai/players/khaleel-ahmed"
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"id": "nandre-burger",
|
| 750 |
+
"type": "player",
|
| 751 |
+
"name": "Nandre Burger",
|
| 752 |
+
"canonical_url": "https://players.cricketstudio.ai/players/nandre-burger"
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"id": "abhinandan-singh",
|
| 756 |
+
"type": "player",
|
| 757 |
+
"name": "Abhinandan Singh",
|
| 758 |
+
"canonical_url": "https://players.cricketstudio.ai/players/abhinandan-singh"
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"id": "adam-milne",
|
| 762 |
+
"type": "player",
|
| 763 |
+
"name": "Adam Milne",
|
| 764 |
+
"canonical_url": "https://players.cricketstudio.ai/players/adam-milne"
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"id": "am-ghazanfar",
|
| 768 |
+
"type": "player",
|
| 769 |
+
"name": "AM Ghazanfar",
|
| 770 |
+
"canonical_url": "https://players.cricketstudio.ai/players/am-ghazanfar"
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"id": "anukul-roy",
|
| 774 |
+
"type": "player",
|
| 775 |
+
"name": "Anukul Roy",
|
| 776 |
+
"canonical_url": "https://players.cricketstudio.ai/players/anukul-roy"
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"id": "brijesh-sharma",
|
| 780 |
+
"type": "player",
|
| 781 |
+
"name": "Brijesh Sharma",
|
| 782 |
+
"canonical_url": "https://players.cricketstudio.ai/players/brijesh-sharma"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"id": "digvesh-rathi",
|
| 786 |
+
"type": "player",
|
| 787 |
+
"name": "Digvesh Rathi",
|
| 788 |
+
"canonical_url": "https://players.cricketstudio.ai/players/digvesh-rathi"
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"id": "ishant-sharma",
|
| 792 |
+
"type": "player",
|
| 793 |
+
"name": "Ishant Sharma",
|
| 794 |
+
"canonical_url": "https://players.cricketstudio.ai/players/ishant-sharma"
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"id": "kuldeep-sen",
|
| 798 |
+
"type": "player",
|
| 799 |
+
"name": "Kuldeep Sen",
|
| 800 |
+
"canonical_url": "https://players.cricketstudio.ai/players/kuldeep-sen"
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"id": "matheesha-pathirana",
|
| 804 |
+
"type": "player",
|
| 805 |
+
"name": "Matheesha Pathirana",
|
| 806 |
+
"canonical_url": "https://players.cricketstudio.ai/players/matheesha-pathirana"
|
| 807 |
+
},
|
| 808 |
+
{
|
| 809 |
+
"id": "mitchell-starc",
|
| 810 |
+
"type": "player",
|
| 811 |
+
"name": "Mitchell Starc",
|
| 812 |
+
"canonical_url": "https://players.cricketstudio.ai/players/mitchell-starc"
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"id": "nuwan-thushara",
|
| 816 |
+
"type": "player",
|
| 817 |
+
"name": "Nuwan Thushara",
|
| 818 |
+
"canonical_url": "https://players.cricketstudio.ai/players/nuwan-thushara"
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"id": "rasikh-salam-dar",
|
| 822 |
+
"type": "player",
|
| 823 |
+
"name": "Rasikh Salam Dar",
|
| 824 |
+
"canonical_url": "https://players.cricketstudio.ai/players/rasikh-salam-dar"
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"id": "sai-kishore",
|
| 828 |
+
"type": "player",
|
| 829 |
+
"name": "Sai Kishore",
|
| 830 |
+
"canonical_url": "https://players.cricketstudio.ai/players/sai-kishore"
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"id": "shivang-kumar",
|
| 834 |
+
"type": "player",
|
| 835 |
+
"name": "Shivang Kumar",
|
| 836 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shivang-kumar"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"id": "shreyas-gopal",
|
| 840 |
+
"type": "player",
|
| 841 |
+
"name": "Shreyas Gopal",
|
| 842 |
+
"canonical_url": "https://players.cricketstudio.ai/players/shreyas-gopal"
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"id": "spencer-johnson",
|
| 846 |
+
"type": "player",
|
| 847 |
+
"name": "Spencer Johnson",
|
| 848 |
+
"canonical_url": "https://players.cricketstudio.ai/players/spencer-johnson"
|
| 849 |
+
},
|
| 850 |
+
{
|
| 851 |
+
"id": "vipraj-nigam",
|
| 852 |
+
"type": "player",
|
| 853 |
+
"name": "Vipraj Nigam",
|
| 854 |
+
"canonical_url": "https://players.cricketstudio.ai/players/vipraj-nigam"
|
| 855 |
+
}
|
| 856 |
+
]
|
| 857 |
+
}
|
schema.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "CricketStudio Knowledge Graph — schema",
|
| 3 |
+
"description": "Node types and typed edge predicates. Public vocabulary only.",
|
| 4 |
+
"license": "CC BY 4.0",
|
| 5 |
+
"entityTypes": [
|
| 6 |
+
"player",
|
| 7 |
+
"franchise"
|
| 8 |
+
],
|
| 9 |
+
"edgePredicates": {
|
| 10 |
+
"plays_for": {
|
| 11 |
+
"subject": "player",
|
| 12 |
+
"object": "franchise",
|
| 13 |
+
"label": "plays for"
|
| 14 |
+
},
|
| 15 |
+
"faced": {
|
| 16 |
+
"subject": "player",
|
| 17 |
+
"object": "player",
|
| 18 |
+
"label": "faced (batter vs bowler)"
|
| 19 |
+
},
|
| 20 |
+
"dismissed_by": {
|
| 21 |
+
"subject": "player",
|
| 22 |
+
"object": "player",
|
| 23 |
+
"label": "dismissed by"
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
}
|