added requests
parent
7643227cb1
commit
72c1ac1f36
@ -0,0 +1,12 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { RequestService } from './request.service';
|
||||||
|
|
||||||
|
describe('RequestService', () => {
|
||||||
|
beforeEach(() => TestBed.configureTestingModule({}));
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
const service: RequestService = TestBed.get(RequestService);
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,30 @@
|
|||||||
|
import {Injectable} from '@angular/core';
|
||||||
|
import {Headers, Http} from '@angular/http';
|
||||||
|
import {DatasharingService} from '../datasharing.service';
|
||||||
|
import {Router} from '@angular/router';
|
||||||
|
import {environment} from 'src/environments/environment';
|
||||||
|
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export class RequestService {
|
||||||
|
|
||||||
|
constructor(private http: Http, private data: DatasharingService, private router: Router) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public buildJsonRequest(id_: number, type_: String): any {
|
||||||
|
const body = {
|
||||||
|
query: `mutation($id: ID!, $type: RequestType) {
|
||||||
|
sendRequest(receiver: $id, type: $type) {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}`
|
||||||
|
, variables: {
|
||||||
|
id: id_,
|
||||||
|
type: type_
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return body;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue