1). What is SSRS (Sql Server Reporting Services) ? Ans : Reporting Services is a server-based reporting platform that provides comprehensive reporting functionality for a variety of data sources.Which allow you to create tabular, matrix, rectangle, sub-report,,charts, Gauge, indicator reports in managed environment. Like a) Development Tool b) Configuration Tool c) Administration Tool d) Report Viewing Tool 2) What is report Manager? Ans: Report Manager is a Web-based report access and management tool that you use to administer a single report server instance from a remote location over an HTTP connection. You can also use Report Manager for its report viewer and navigation features. You can use Report Manager to perform the following tasks: View, search, print, and subscribe to reports. Create, secure, and maintain the folder hierarchy to organize items on the server. Configure role-based security that determines access to items and operations. Configure rep...
import requests import json from requests.auth import HTTPBasicAuth # Define the GraphQL endpoint url = 'https://graphql-demo.mead.io/' # Define user ID and password for authentication user_id = 'your_user_id' password = 'your_password' # Define the GraphQL query with date range filter query = """ { events(filter: { startDate: { gte: "2023-01-01" }, endDate: { lte: "2023-01-31" } }) { id name date location } } """ # Perform the query with authentication response = requests.post(url, json={'query': query}, auth=HTTPBasicAuth(user_id, password)) data = response.json() # Print the result print(json.dumps(data, indent=2))
Comments
Post a Comment