Skip to content

Commit

Permalink
restore unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
meetulr committed Aug 23, 2024
1 parent bebb55c commit 7f1d982
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ If you are new to contributing to open source, please read the Open Source Guide
<!-- toc -->

- [Code of Conduct](#code-of-conduct)
- [Videos](#videos)
- [Ways to Contribute](#ways-to-contribute)
- [Our Development Process](#our-development-process)
- [Issues](#issues)
Expand All @@ -35,7 +34,6 @@ If you are new to contributing to open source, please read the Open Source Guide
- [Community](#community)

<!-- tocstop -->

## Code of Conduct

A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Core features include:

- [Talawa Components](#talawa-components)
- [Documentation](#documentation)
- [Videos](#videos)
- [Videos](#videos)

<!-- tocstop -->

Expand All @@ -54,3 +54,4 @@ Core features include:

1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights
1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors.

4 changes: 2 additions & 2 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1574,24 +1574,24 @@ enum RecurringEventMutationType {
}

type SocialMediaUrls {
X: String
facebook: String
gitHub: String
instagram: String
linkedIn: String
reddit: String
slack: String
X: String
youTube: String
}

input SocialMediaUrlsInput {
X: String
facebook: String
gitHub: String
instagram: String
linkedIn: String
reddit: String
slack: String
X: String
youTube: String
}

Expand Down
6 changes: 3 additions & 3 deletions src/types/generatedGraphQLTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2686,24 +2686,24 @@ export type RecurringEventMutationType =

export type SocialMediaUrls = {
__typename?: 'SocialMediaUrls';
X?: Maybe<Scalars['String']['output']>;
facebook?: Maybe<Scalars['String']['output']>;
gitHub?: Maybe<Scalars['String']['output']>;
instagram?: Maybe<Scalars['String']['output']>;
linkedIn?: Maybe<Scalars['String']['output']>;
reddit?: Maybe<Scalars['String']['output']>;
slack?: Maybe<Scalars['String']['output']>;
X?: Maybe<Scalars['String']['output']>;
youTube?: Maybe<Scalars['String']['output']>;
};

export type SocialMediaUrlsInput = {
X?: InputMaybe<Scalars['String']['input']>;
facebook?: InputMaybe<Scalars['String']['input']>;
gitHub?: InputMaybe<Scalars['String']['input']>;
instagram?: InputMaybe<Scalars['String']['input']>;
linkedIn?: InputMaybe<Scalars['String']['input']>;
reddit?: InputMaybe<Scalars['String']['input']>;
slack?: InputMaybe<Scalars['String']['input']>;
X?: InputMaybe<Scalars['String']['input']>;
youTube?: InputMaybe<Scalars['String']['input']>;
};

Expand Down Expand Up @@ -4654,13 +4654,13 @@ export type RecurrenceRuleResolvers<ContextType = any, ParentType extends Resolv
};

export type SocialMediaUrlsResolvers<ContextType = any, ParentType extends ResolversParentTypes['SocialMediaUrls'] = ResolversParentTypes['SocialMediaUrls']> = {
X?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
facebook?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
gitHub?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
instagram?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
linkedIn?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
reddit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
slack?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
X?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
youTube?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
};
Expand Down

0 comments on commit 7f1d982

Please sign in to comment.