Commit ea5642ce authored by Neosoulink's avatar Neosoulink
Browse files

feat: add user interface

parent a3c98a08
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
@@ -14,3 +14,28 @@ export interface ScalarsInterface {
	Any: any;
	Void: any;
}

export interface UserInterface {
	__typename: string;
	apartment: string | number;
	code: string | number;
	geoLocation: {
		__typename: string;
		city: string;
		coordinates: {
			__typename: string;
			lat: number;
			lng: number;
		};
		countryId: number;
		countryName: string;
		createdAt: string;
		house: 1;
		id: string;
		notes: string | null;
		postcode: string | null;
		streetAddress: string;
		updatedAt: string;
	};
	id: string;
}