Skip to content

Instantly share code, notes, and snippets.

View sardor01's full-sized avatar

Sardor Astanov sardor01

View GitHub Profile
@faim87
faim87 / Uzbekistan_phone_codes_regex_pattern.md
Last active July 24, 2024 11:52
Uzbekistan phone codes - regex pattern.

Mobile = /^9989[012345789][0-9]{7}$/

All = /^998(9[012345789]|6[125679]|7[01234569])[0-9]{7}$/

@craigbeck
craigbeck / introspection-query.graphql
Created April 6, 2016 20:20
Introspection query for GraphQL
query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
subscriptionType { name }
types {
...FullType
}
directives {